pub struct QuickSelect {
pub id: QuickSelectId,
pub name: String,
}Expand description
Information about a specific QuickSelect slot.
Fields§
§id: QuickSelectIdID of the QuickSelect slot.
name: StringUser-defined name of the QuickSelect slot.
Trait Implementations§
Source§impl Clone for QuickSelect
impl Clone for QuickSelect
Source§fn clone(&self) -> QuickSelect
fn clone(&self) -> QuickSelect
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 moreSource§impl Debug for QuickSelect
impl Debug for QuickSelect
Source§impl<'de> Deserialize<'de> for QuickSelect
impl<'de> Deserialize<'de> for QuickSelect
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 Serialize for QuickSelect
impl Serialize for QuickSelect
Source§impl TryFrom<RawResponse> for QuickSelect
impl TryFrom<RawResponse> for QuickSelect
Source§type Error = CommandError
type Error = CommandError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for QuickSelect
impl RefUnwindSafe for QuickSelect
impl Send for QuickSelect
impl Sync for QuickSelect
impl Unpin for QuickSelect
impl UnsafeUnpin for QuickSelect
impl UnwindSafe for QuickSelect
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