pub struct GetListData {
pub items: Vec<String>,
}Expand description
Inner data for get_list responses.
Fields§
§items: Vec<String>Items in the list on the current page.
Trait Implementations§
Source§impl Clone for GetListData
impl Clone for GetListData
Source§fn clone(&self) -> GetListData
fn clone(&self) -> GetListData
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 GetListData
impl Debug for GetListData
Source§impl<'de> Deserialize<'de> for GetListData
impl<'de> Deserialize<'de> for GetListData
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 GetListData
impl RefUnwindSafe for GetListData
impl Send for GetListData
impl Sync for GetListData
impl Unpin for GetListData
impl UnsafeUnpin for GetListData
impl UnwindSafe for GetListData
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