pub struct ModelProto {Show 13 fields
pub ir_version: i64,
pub opset_import: Vec<OperatorSetIdProto>,
pub producer_name: String,
pub producer_version: String,
pub domain: String,
pub model_version: i64,
pub doc_string: String,
pub graph: MessageField<GraphProto>,
pub metadata_props: Vec<StringStringEntryProto>,
pub training_info: Vec<TrainingInfoProto>,
pub functions: Vec<FunctionProto>,
pub configuration: Vec<DeviceConfigurationProto>,
pub special_fields: SpecialFields,
}Expand description
Generated protobuf bindings for the ONNX wire format messages that sibling crates need to decode on-disk artifacts.
Re-exported so callers (e.g. onnx-official-tests) can read .pb
reference tensors and inspect model.onnx input/output signatures
without rebuilding the bindings themselves.
TensorProtodecodes individual tensor.pbreference files.ModelProto/GraphProto/ValueInfoProto/TypeProto/TensorShapeProtoare used byonnx-official-tests’s build script to walk amodel.onnxheader and extract per-test input/output shape and dtype metadata so it can emit per-test harness glue with the correct rank and element type.
The inner namespaces (type_proto::Tensor, tensor_shape_proto:: Dimension, etc.) stay private. Callers can still reach them via
method calls on values of the re-exported outer types — Rust allows
public method calls on references to private types as long as the
private type is never named in user code.
Fields§
§ir_version: i64§opset_import: Vec<OperatorSetIdProto>§producer_name: String§producer_version: String§domain: String§model_version: i64§doc_string: String§graph: MessageField<GraphProto>§metadata_props: Vec<StringStringEntryProto>§training_info: Vec<TrainingInfoProto>§functions: Vec<FunctionProto>§configuration: Vec<DeviceConfigurationProto>§special_fields: SpecialFieldsImplementations§
Source§impl ModelProto
impl ModelProto
pub fn new() -> ModelProto
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 (const: unstable) · 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 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 parse_from_tokio_bytes(bytes: &Bytes) -> Result<Self, Error>
fn parse_from_tokio_bytes(bytes: &Bytes) -> Result<Self, Error>
Parse message from
Bytes object.
Resulting message may share references to the passed bytes object.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 PartialEq for ModelProto
impl PartialEq for ModelProto
Source§fn eq(&self, other: &ModelProto) -> bool
fn eq(&self, other: &ModelProto) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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