pub struct OptionsInfoOptionExample {
pub help: String,
pub value: String,
}Expand description
OptionsInfoOptionExample
JSON schema
{
"type": "object",
"required": [
"Help",
"Value"
],
"properties": {
"Help": {
"type": "string"
},
"Value": {
"type": "string"
}
},
"additionalProperties": true
}Fields§
§help: String§value: StringTrait Implementations§
Source§impl Clone for OptionsInfoOptionExample
impl Clone for OptionsInfoOptionExample
Source§fn clone(&self) -> OptionsInfoOptionExample
fn clone(&self) -> OptionsInfoOptionExample
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 OptionsInfoOptionExample
impl Debug for OptionsInfoOptionExample
Source§impl<'de> Deserialize<'de> for OptionsInfoOptionExample
impl<'de> Deserialize<'de> for OptionsInfoOptionExample
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 From<&OptionsInfoOptionExample> for OptionsInfoOptionExample
impl From<&OptionsInfoOptionExample> for OptionsInfoOptionExample
Source§fn from(value: &OptionsInfoOptionExample) -> Self
fn from(value: &OptionsInfoOptionExample) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OptionsInfoOptionExample
impl RefUnwindSafe for OptionsInfoOptionExample
impl Send for OptionsInfoOptionExample
impl Sync for OptionsInfoOptionExample
impl Unpin for OptionsInfoOptionExample
impl UnwindSafe for OptionsInfoOptionExample
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