[][src]Struct tract_tensorflow::tfpb::graph::GraphDef

pub struct GraphDef {
    pub node: RepeatedField<NodeDef>,
    pub versions: SingularPtrField<VersionDef>,
    pub version: i32,
    pub library: SingularPtrField<FunctionDefLibrary>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

node: RepeatedField<NodeDef>versions: SingularPtrField<VersionDef>version: i32library: SingularPtrField<FunctionDefLibrary>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl GraphDef[src]

pub fn new() -> GraphDef[src]

pub fn clear_node(&mut self)[src]

pub fn set_node(&mut self, v: RepeatedField<NodeDef>)[src]

pub fn mut_node(&mut self) -> &mut RepeatedField<NodeDef>[src]

pub fn take_node(&mut self) -> RepeatedField<NodeDef>[src]

pub fn get_node(&self) -> &[NodeDef][src]

pub fn clear_versions(&mut self)[src]

pub fn has_versions(&self) -> bool[src]

pub fn set_versions(&mut self, v: VersionDef)[src]

pub fn mut_versions(&mut self) -> &mut VersionDef[src]

pub fn take_versions(&mut self) -> VersionDef[src]

pub fn get_versions(&self) -> &VersionDef[src]

pub fn clear_version(&mut self)[src]

pub fn set_version(&mut self, v: i32)[src]

pub fn get_version(&self) -> i32[src]

pub fn clear_library(&mut self)[src]

pub fn has_library(&self) -> bool[src]

pub fn set_library(&mut self, v: FunctionDefLibrary)[src]

pub fn mut_library(&mut self) -> &mut FunctionDefLibrary[src]

pub fn take_library(&mut self) -> FunctionDefLibrary[src]

pub fn get_library(&self) -> &FunctionDefLibrary[src]

impl GraphDef[src]

pub fn node(self, n: NodeDef) -> Self[src]

pub fn save_to<P: AsRef<Path>>(self, p: P) -> TractResult<()>[src]

Trait Implementations

impl PartialEq<GraphDef> for GraphDef[src]

impl Default for GraphDef[src]

impl Clone for GraphDef[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for GraphDef[src]

impl Message for GraphDef[src]

fn write_to(&self, os: &mut CodedOutputStream) -> Result<(), ProtobufError>[src]

Write the message to the stream. Read more

fn write_length_delimited_to(
    &self,
    os: &mut CodedOutputStream
) -> Result<(), ProtobufError>
[src]

Write the message to the stream prepending the message with message length encoded as varint. Read more

fn write_length_delimited_to_vec(
    &self,
    vec: &mut Vec<u8>
) -> Result<(), ProtobufError>
[src]

Write the message to the vec, prepend the message with message length encoded as varint. Read more

fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<(), ProtobufError>[src]

Update this message object with fields read from given stream.

fn check_initialized(&self) -> Result<(), ProtobufError>[src]

Check if all required fields of this object are initialized.

fn write_to_writer(&self, w: &mut dyn Write) -> Result<(), ProtobufError>[src]

Write the message to the writer.

fn write_to_vec(&self, v: &mut Vec<u8>) -> Result<(), ProtobufError>[src]

Write the message to bytes vec.

fn write_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>[src]

Write the message to bytes vec.

fn write_length_delimited_to_writer(
    &self,
    w: &mut dyn Write
) -> Result<(), ProtobufError>
[src]

Write the message to the writer, prepend the message with message length encoded as varint. Read more

fn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>[src]

Write the message to the bytes vec, prepend the message with message length encoded as varint. Read more

fn type_id(&self) -> TypeId[src]

Get type id for downcasting.

impl Clear for GraphDef[src]

impl ProtobufValue for GraphDef[src]

fn as_any(&self) -> &(dyn Any + 'static)[src]

fn is_non_zero(&self) -> bool[src]

fn as_ref_copy(&self) -> ProtobufValueRef<'static>[src]

impl Framework<NodeDef, GraphDef> for Tensorflow[src]

fn proto_model_for_path<impl AsRef>(
    &self,
    p: impl AsRef
) -> Result<ProtoModel, TractError> where
    impl AsRef: AsRef<Path>, 
[src]

fn model_for_read(
    &self,
    r: &mut dyn Read
) -> Result<Model<TensorFact>, TractError>
[src]

fn model_for_path<impl AsRef>(
    &self,
    p: impl AsRef
) -> Result<Model<TensorFact>, TractError> where
    impl AsRef: AsRef<Path>, 
[src]

fn build_op(
    &self,
    name: &str,
    payload: &ProtoOp
) -> Result<Box<dyn Op + 'static>, TractError>
[src]

Auto Trait Implementations

impl Send for GraphDef

impl Sync for GraphDef

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Downcast for T where
    T: Any

impl<T> Clone for T where
    T: Clone
[src]