github.com/TrueCloudLab/frostfs-api-go/v2@v2.0.0-20230228134343-196241c4e79a/accounting/grpc/types.go (about) 1 package accounting 2 3 // SetValue sets value of the decimal number. 4 func (m *Decimal) SetValue(v int64) { 5 m.Value = v 6 } 7 8 // SetPrecision sets precision of the decimal number. 9 func (m *Decimal) SetPrecision(v uint32) { 10 m.Precision = v 11 }