[][src]Struct exonum::messages::schema::base::ArtifactId

pub struct ArtifactId {
    pub runtime_id: u32,
    pub name: String,
    pub version: String,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

runtime_id: u32name: Stringversion: Stringunknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl ArtifactId[src]

pub fn new() -> ArtifactId[src]

pub fn get_runtime_id(&self) -> u32[src]

pub fn clear_runtime_id(&mut self)[src]

pub fn set_runtime_id(&mut self, v: u32)[src]

pub fn get_name(&self) -> &str[src]

pub fn clear_name(&mut self)[src]

pub fn set_name(&mut self, v: String)[src]

pub fn mut_name(&mut self) -> &mut String[src]

pub fn take_name(&mut self) -> String[src]

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

pub fn clear_version(&mut self)[src]

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

pub fn mut_version(&mut self) -> &mut String[src]

pub fn take_version(&mut self) -> String[src]

Trait Implementations

impl Clear for ArtifactId[src]

impl Clone for ArtifactId[src]

impl Debug for ArtifactId[src]

impl Default for ArtifactId[src]

impl<'a> Default for &'a ArtifactId[src]

impl<'de> Deserialize<'de> for ArtifactId[src]

impl Message for ArtifactId[src]

impl PartialEq<ArtifactId> for ArtifactId[src]

impl ProtobufValue for ArtifactId[src]

impl Serialize for ArtifactId[src]

impl StructuralPartialEq for ArtifactId[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

impl<T> InitializableFromZeroed for T where
    T: Default

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

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,