pub struct ModelProto {
pub ir_version: Option<i64>,
pub opset_import: Vec<OperatorSetIdProto>,
pub producer_name: Option<String>,
pub producer_version: Option<String>,
pub domain: Option<String>,
pub model_version: Option<i64>,
pub doc_string: Option<String>,
pub graph: MessageField<GraphProto>,
pub metadata_props: Vec<StringStringEntryProto>,
pub training_info: Vec<TrainingInfoProto>,
pub functions: Vec<FunctionProto>,
pub special_fields: SpecialFields,
}
Fields§
§ir_version: Option<i64>
§opset_import: Vec<OperatorSetIdProto>
§producer_name: Option<String>
§producer_version: Option<String>
§domain: Option<String>
§model_version: Option<i64>
§doc_string: Option<String>
§graph: MessageField<GraphProto>
§metadata_props: Vec<StringStringEntryProto>
§training_info: Vec<TrainingInfoProto>
§functions: Vec<FunctionProto>
§special_fields: SpecialFields
Implementations§
Source§impl ModelProto
impl ModelProto
pub fn new() -> ModelProto
pub fn ir_version(&self) -> i64
pub fn clear_ir_version(&mut self)
pub fn has_ir_version(&self) -> bool
pub fn set_ir_version(&mut self, v: i64)
pub fn producer_name(&self) -> &str
pub fn clear_producer_name(&mut self)
pub fn has_producer_name(&self) -> bool
pub fn set_producer_name(&mut self, v: String)
pub fn mut_producer_name(&mut self) -> &mut String
pub fn take_producer_name(&mut self) -> String
pub fn producer_version(&self) -> &str
pub fn clear_producer_version(&mut self)
pub fn has_producer_version(&self) -> bool
pub fn set_producer_version(&mut self, v: String)
pub fn mut_producer_version(&mut self) -> &mut String
pub fn take_producer_version(&mut self) -> String
pub fn domain(&self) -> &str
pub fn clear_domain(&mut self)
pub fn has_domain(&self) -> bool
pub fn set_domain(&mut self, v: String)
pub fn mut_domain(&mut self) -> &mut String
pub fn take_domain(&mut self) -> String
pub fn model_version(&self) -> i64
pub fn clear_model_version(&mut self)
pub fn has_model_version(&self) -> bool
pub fn set_model_version(&mut self, v: i64)
pub fn doc_string(&self) -> &str
pub fn clear_doc_string(&mut self)
pub fn has_doc_string(&self) -> bool
pub fn set_doc_string(&mut self, v: String)
pub fn mut_doc_string(&mut self) -> &mut String
pub fn take_doc_string(&mut self) -> String
Trait Implementations§
Source§impl Clone for ModelProto
impl Clone for ModelProto
Source§fn clone(&self) -> ModelProto
fn clone(&self) -> ModelProto
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ModelProto
impl Debug for ModelProto
Source§impl<'a> Default for &'a ModelProto
impl<'a> Default for &'a ModelProto
Source§fn default() -> &'a ModelProto
fn default() -> &'a ModelProto
Returns the “default value” for a type. Read more
Source§impl Default for ModelProto
impl Default for ModelProto
Source§fn default() -> ModelProto
fn default() -> ModelProto
Returns the “default value” for a type. Read more
Source§impl Display for ModelProto
impl Display for ModelProto
Source§impl Message for ModelProto
impl Message for ModelProto
Source§fn is_initialized(&self) -> bool
fn is_initialized(&self) -> bool
True iff all required fields are initialized.
Always returns
true
for protobuf 3.Source§fn merge_from(&mut self, is: &mut CodedInputStream<'_>) -> Result<()>
fn merge_from(&mut self, is: &mut CodedInputStream<'_>) -> Result<()>
Update this message object with fields read from given stream.
Source§fn compute_size(&self) -> u64
fn compute_size(&self) -> u64
Compute and cache size of this message and all nested messages. Read more
Source§fn write_to_with_cached_sizes(
&self,
os: &mut CodedOutputStream<'_>,
) -> Result<()>
fn write_to_with_cached_sizes( &self, os: &mut CodedOutputStream<'_>, ) -> Result<()>
Write message to the stream. Read more
Source§fn special_fields(&self) -> &SpecialFields
fn special_fields(&self) -> &SpecialFields
Special fields (unknown fields and cached size).
Source§fn mut_special_fields(&mut self) -> &mut SpecialFields
fn mut_special_fields(&mut self) -> &mut SpecialFields
Special fields (unknown fields and cached size).
Source§fn new() -> ModelProto
fn new() -> ModelProto
Create an empty message object. Read more
Source§fn default_instance() -> &'static ModelProto
fn default_instance() -> &'static ModelProto
Return a pointer to default immutable message with static lifetime. Read more
Source§fn parse_from(is: &mut CodedInputStream<'_>) -> Result<Self, Error>
fn parse_from(is: &mut CodedInputStream<'_>) -> Result<Self, Error>
Parse message from stream.
Source§fn cached_size(&self) -> u32
fn cached_size(&self) -> u32
Get size previously computed by
compute_size
. Read moreSource§fn write_to(&self, os: &mut CodedOutputStream<'_>) -> Result<(), Error>
fn write_to(&self, os: &mut CodedOutputStream<'_>) -> Result<(), Error>
Write the message to the stream. Read more
Source§fn write_length_delimited_to(
&self,
os: &mut CodedOutputStream<'_>,
) -> Result<(), Error>
fn write_length_delimited_to( &self, os: &mut CodedOutputStream<'_>, ) -> Result<(), Error>
Write the message to the stream prepending the message with message length
encoded as varint.
Source§fn write_length_delimited_to_vec(&self, vec: &mut Vec<u8>) -> Result<(), Error>
fn write_length_delimited_to_vec(&self, vec: &mut Vec<u8>) -> Result<(), Error>
Write the message to the vec, prepend the message with message length
encoded as varint.
Source§fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<(), Error>
fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<(), Error>
Update this message object with fields read from given stream.
Source§fn parse_from_reader(reader: &mut dyn Read) -> Result<Self, Error>
fn parse_from_reader(reader: &mut dyn Read) -> Result<Self, Error>
Parse message from reader.
Parse stops on EOF or when error encountered.
Source§fn check_initialized(&self) -> Result<(), Error>
fn check_initialized(&self) -> Result<(), Error>
Check if all required fields of this object are initialized.
Source§fn write_to_writer(&self, w: &mut dyn Write) -> Result<(), Error>
fn write_to_writer(&self, w: &mut dyn Write) -> Result<(), Error>
Write the message to the writer.
Source§fn write_length_delimited_to_writer(
&self,
w: &mut dyn Write,
) -> Result<(), Error>
fn write_length_delimited_to_writer( &self, w: &mut dyn Write, ) -> Result<(), Error>
Write the message to the writer, prepend the message with message length
encoded as varint.
Source§fn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>, Error>
fn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>, Error>
Write the message to the bytes vec, prepend the message with message length
encoded as varint.
Source§fn unknown_fields(&self) -> &UnknownFields
fn unknown_fields(&self) -> &UnknownFields
Get a reference to unknown fields.
Source§fn mut_unknown_fields(&mut self) -> &mut UnknownFields
fn mut_unknown_fields(&mut self) -> &mut UnknownFields
Get a mutable reference to unknown fields.
Source§impl MessageFull for ModelProto
impl MessageFull for ModelProto
Source§fn descriptor() -> MessageDescriptor
fn descriptor() -> MessageDescriptor
Get message descriptor for message type. Read more
Source§fn reflect_eq(&self, other: &Self, mode: &ReflectEqMode) -> bool
fn reflect_eq(&self, other: &Self, mode: &ReflectEqMode) -> bool
Reflective equality. Read more
Source§impl PartialEq for ModelProto
impl PartialEq for ModelProto
Source§impl ProtobufValue for ModelProto
impl ProtobufValue for ModelProto
Source§type RuntimeType = RuntimeTypeMessage<ModelProto>
type RuntimeType = RuntimeTypeMessage<ModelProto>
Actual implementation of type properties.
impl StructuralPartialEq for ModelProto
Auto Trait Implementations§
impl !Freeze for ModelProto
impl RefUnwindSafe for ModelProto
impl Send for ModelProto
impl Sync for ModelProto
impl Unpin for ModelProto
impl UnwindSafe for ModelProto
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<M> MessageDyn for Mwhere
M: MessageFull,
impl<M> MessageDyn for Mwhere
M: MessageFull,
Source§fn descriptor_dyn(&self) -> MessageDescriptor
fn descriptor_dyn(&self) -> MessageDescriptor
Message descriptor for this message, used for reflection.
Source§fn merge_from_dyn(&mut self, is: &mut CodedInputStream<'_>) -> Result<(), Error>
fn merge_from_dyn(&mut self, is: &mut CodedInputStream<'_>) -> Result<(), Error>
Update this message fields with contents of given stream.
Source§fn write_to_with_cached_sizes_dyn(
&self,
os: &mut CodedOutputStream<'_>,
) -> Result<(), Error>
fn write_to_with_cached_sizes_dyn( &self, os: &mut CodedOutputStream<'_>, ) -> Result<(), Error>
Write the message.
Source§fn compute_size_dyn(&self) -> u64
fn compute_size_dyn(&self) -> u64
Compute (and cache) the message size.
Source§fn is_initialized_dyn(&self) -> bool
fn is_initialized_dyn(&self) -> bool
True iff all required fields are initialized.
Always returns
true
for protobuf 3.Source§fn special_fields_dyn(&self) -> &SpecialFields
fn special_fields_dyn(&self) -> &SpecialFields
Get a reference to special fields.
Source§fn mut_special_fields_dyn(&mut self) -> &mut SpecialFields
fn mut_special_fields_dyn(&mut self) -> &mut SpecialFields
Get a mutable reference to special fields.