pub struct DeckConfigsResult {
pub current_deck_id: u64,
pub current_config_id: u64,
pub all_config_id: Vec<u64>,
pub config_list: Vec<DeckConfigDto>,
}Expand description
Response for deck configuration
Fields§
§current_deck_id: u64§current_config_id: u64§all_config_id: Vec<u64>§config_list: Vec<DeckConfigDto>Trait Implementations§
Source§impl Debug for DeckConfigsResult
impl Debug for DeckConfigsResult
Source§impl<'de> Deserialize<'de> for DeckConfigsResult
impl<'de> Deserialize<'de> for DeckConfigsResult
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
Auto Trait Implementations§
impl Freeze for DeckConfigsResult
impl RefUnwindSafe for DeckConfigsResult
impl Send for DeckConfigsResult
impl Sync for DeckConfigsResult
impl Unpin for DeckConfigsResult
impl UnwindSafe for DeckConfigsResult
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