pub struct GetLocalVariables {
pub status: f64,
pub error: bool,
pub meta: Box<GetLocalVariablesMeta>,
}Fields§
§status: f64The response status code.
error: boolFor successful requests, this value is always false.
meta: Box<GetLocalVariablesMeta>Implementations§
Source§impl GetLocalVariables
impl GetLocalVariables
pub fn new( status: f64, error: bool, meta: GetLocalVariablesMeta, ) -> GetLocalVariables
Trait Implementations§
Source§impl Clone for GetLocalVariables
impl Clone for GetLocalVariables
Source§fn clone(&self) -> GetLocalVariables
fn clone(&self) -> GetLocalVariables
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetLocalVariables
impl Debug for GetLocalVariables
Source§impl Default for GetLocalVariables
impl Default for GetLocalVariables
Source§fn default() -> GetLocalVariables
fn default() -> GetLocalVariables
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetLocalVariables
impl<'de> Deserialize<'de> for GetLocalVariables
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetLocalVariables
impl PartialEq for GetLocalVariables
Source§impl Serialize for GetLocalVariables
impl Serialize for GetLocalVariables
impl StructuralPartialEq for GetLocalVariables
Auto Trait Implementations§
impl Freeze for GetLocalVariables
impl RefUnwindSafe for GetLocalVariables
impl Send for GetLocalVariables
impl Sync for GetLocalVariables
impl Unpin for GetLocalVariables
impl UnwindSafe for GetLocalVariables
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