Struct sc2_proto::sc2api::RequestReplayInfo[][src]

pub struct RequestReplayInfo {
    pub download_data: Option<bool>,
    pub replay: Option<RequestReplayInfo_oneof_replay>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

download_data: Option<bool>replay: Option<RequestReplayInfo_oneof_replay>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl RequestReplayInfo[src]

pub fn new() -> RequestReplayInfo[src]

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

pub fn clear_replay_path(&mut self)[src]

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

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

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

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

pub fn get_replay_data(&self) -> &[u8][src]

pub fn clear_replay_data(&mut self)[src]

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

pub fn set_replay_data(&mut self, v: Vec<u8>)[src]

pub fn mut_replay_data(&mut self) -> &mut Vec<u8>[src]

pub fn take_replay_data(&mut self) -> Vec<u8>[src]

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

pub fn clear_download_data(&mut self)[src]

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

pub fn set_download_data(&mut self, v: bool)[src]

Trait Implementations

impl Clear for RequestReplayInfo[src]

impl Clone for RequestReplayInfo[src]

impl Debug for RequestReplayInfo[src]

impl Default for RequestReplayInfo[src]

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

impl Message for RequestReplayInfo[src]

impl PartialEq<RequestReplayInfo> for RequestReplayInfo[src]

impl ProtobufValue for RequestReplayInfo[src]

impl StructuralPartialEq for RequestReplayInfo[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> From<T> for T[src]

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.