Update structure with grpc subdir

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2020-08-14 19:00:16 +03:00 committed by Stanislav Bogatyrev
parent 6191903326
commit 60e9c3d0d3
40 changed files with 1624 additions and 1595 deletions

View file

@ -1,36 +0,0 @@
package refs
// SetValue sets container identifier in a binary format.
func (m *ContainerID) SetValue(v []byte) {
if m != nil {
m.Value = v
}
}
// SetValue sets object identifier in a binary format.
func (m *ObjectID) SetValue(v []byte) {
if m != nil {
m.Value = v
}
}
// SetValue sets owner identifier in a binary format.
func (m *OwnerID) SetValue(v []byte) {
if m != nil {
m.Value = v
}
}
// SetContainerId sets container identifier of the address.
func (m *Address) SetContainerId(v *ContainerID) {
if m != nil {
m.ContainerId = v
}
}
// SetObjectId sets object identifier of the address.
func (m *Address) SetObjectId(v *ObjectID) {
if m != nil {
m.ObjectId = v
}
}