pub struct ListItemKindResponse {
pub item_kinds: Vec<ItemKind>,
}
Expand description
Response for listing item kinds
Fields§
§item_kinds: Vec<ItemKind>
A list of item kinds
Trait Implementations§
Source§impl Clone for ListItemKindResponse
impl Clone for ListItemKindResponse
Source§fn clone(&self) -> ListItemKindResponse
fn clone(&self) -> ListItemKindResponse
Returns a copy 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 ListItemKindResponse
impl Debug for ListItemKindResponse
Source§impl<'de> Deserialize<'de> for ListItemKindResponse
impl<'de> Deserialize<'de> for ListItemKindResponse
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 ListItemKindResponse
impl RefUnwindSafe for ListItemKindResponse
impl Send for ListItemKindResponse
impl Sync for ListItemKindResponse
impl Unpin for ListItemKindResponse
impl UnwindSafe for ListItemKindResponse
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