pub struct GmManualVariable {
pub name: String,
pub example: String,
pub description: String,
pub returns: String,
pub link: Url,
}
Expand description
A variable scraped from the GmManual.
Fields§
§name: String
The name of the variable
example: String
The example given in the Manual.
description: String
The description of what the variable does.
returns: String
The type of the variable.
link: Url
The link to the webpage.
Trait Implementations§
Source§impl Clone for GmManualVariable
impl Clone for GmManualVariable
Source§fn clone(&self) -> GmManualVariable
fn clone(&self) -> GmManualVariable
Returns a copy 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 GmManualVariable
impl Debug for GmManualVariable
Source§impl<'de> Deserialize<'de> for GmManualVariable
impl<'de> Deserialize<'de> for GmManualVariable
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 Ord for GmManualVariable
impl Ord for GmManualVariable
Source§fn cmp(&self, other: &GmManualVariable) -> Ordering
fn cmp(&self, other: &GmManualVariable) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for GmManualVariable
impl PartialEq for GmManualVariable
Source§impl PartialOrd for GmManualVariable
impl PartialOrd for GmManualVariable
Source§impl Serialize for GmManualVariable
impl Serialize for GmManualVariable
impl Eq for GmManualVariable
impl StructuralPartialEq for GmManualVariable
Auto Trait Implementations§
impl Freeze for GmManualVariable
impl RefUnwindSafe for GmManualVariable
impl Send for GmManualVariable
impl Sync for GmManualVariable
impl Unpin for GmManualVariable
impl UnwindSafe for GmManualVariable
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