// Code generated by protoc-gen-go-frostfs. DO NOT EDIT. package control import "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/util/proto" // StableSize returns the size of x in protobuf format. // // Structures with the same field values have the same binary size. func (x *Signature) StableSize() (size int) { if x == nil { return 0 } size += proto.BytesSize(1, x.Key) size += proto.BytesSize(2, x.Sign) return size } // StableMarshal marshals x in protobuf binary format with stable field order. // // If buffer length is less than x.StableSize(), new buffer is allocated. // // Returns any error encountered which did not allow writing the data completely. // Otherwise, returns the buffer in which the data is written. // // Structures with the same field values have the same binary format. func (x *Signature) StableMarshal(buf []byte) []byte { if x == nil { return []byte{} } if buf == nil { buf = make([]byte, x.StableSize()) } var offset int offset += proto.BytesMarshal(1, buf[offset:], x.Key) offset += proto.BytesMarshal(2, buf[offset:], x.Sign) return buf }