pub struct ProtocolQueryVar {
pub name: Cow<'static, str>,
pub description: Cow<'static, str>,
pub example: Cow<'static, str>,
pub var_type: ProtocolQueryType,
pub value: ProtocolQueryVarVar,
}Fields§
§name: Cow<'static, str>§description: Cow<'static, str>§example: Cow<'static, str>§var_type: ProtocolQueryType§value: ProtocolQueryVarVarTrait Implementations§
Source§impl Clone for ProtocolQueryVar
impl Clone for ProtocolQueryVar
Source§fn clone(&self) -> ProtocolQueryVar
fn clone(&self) -> ProtocolQueryVar
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 moreAuto Trait Implementations§
impl Freeze for ProtocolQueryVar
impl RefUnwindSafe for ProtocolQueryVar
impl Send for ProtocolQueryVar
impl Sync for ProtocolQueryVar
impl Unpin for ProtocolQueryVar
impl UnsafeUnpin for ProtocolQueryVar
impl UnwindSafe for ProtocolQueryVar
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