pub struct PendingServerRequestOption {
pub label: String,
pub description: Option<String>,
pub value: Option<Value>,
pub is_other: bool,
pub raw: Value,
}Fields§
§label: String§description: Option<String>§value: Option<Value>§is_other: bool§raw: ValueTrait Implementations§
Source§impl Clone for PendingServerRequestOption
impl Clone for PendingServerRequestOption
Source§fn clone(&self) -> PendingServerRequestOption
fn clone(&self) -> PendingServerRequestOption
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 PendingServerRequestOption
impl Debug for PendingServerRequestOption
Source§impl Default for PendingServerRequestOption
impl Default for PendingServerRequestOption
Source§fn default() -> PendingServerRequestOption
fn default() -> PendingServerRequestOption
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PendingServerRequestOptionwhere
PendingServerRequestOption: Default,
impl<'de> Deserialize<'de> for PendingServerRequestOptionwhere
PendingServerRequestOption: Default,
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
impl StructuralPartialEq for PendingServerRequestOption
Auto Trait Implementations§
impl Freeze for PendingServerRequestOption
impl RefUnwindSafe for PendingServerRequestOption
impl Send for PendingServerRequestOption
impl Sync for PendingServerRequestOption
impl Unpin for PendingServerRequestOption
impl UnsafeUnpin for PendingServerRequestOption
impl UnwindSafe for PendingServerRequestOption
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