Struct sc2_proto::debug::DebugLine[][src]

pub struct DebugLine {
    pub color: SingularPtrField<Color>,
    pub line: SingularPtrField<Line>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

color: SingularPtrField<Color>line: SingularPtrField<Line>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl DebugLine[src]

pub fn new() -> DebugLine[src]

pub fn get_color(&self) -> &Color[src]

pub fn clear_color(&mut self)[src]

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

pub fn set_color(&mut self, v: Color)[src]

pub fn mut_color(&mut self) -> &mut Color[src]

pub fn take_color(&mut self) -> Color[src]

pub fn get_line(&self) -> &Line[src]

pub fn clear_line(&mut self)[src]

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

pub fn set_line(&mut self, v: Line)[src]

pub fn mut_line(&mut self) -> &mut Line[src]

pub fn take_line(&mut self) -> Line[src]

Trait Implementations

impl Clear for DebugLine[src]

impl Clone for DebugLine[src]

impl Debug for DebugLine[src]

impl Default for DebugLine[src]

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

impl Message for DebugLine[src]

impl PartialEq<DebugLine> for DebugLine[src]

impl ProtobufValue for DebugLine[src]

impl StructuralPartialEq for DebugLine[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.