pub struct ShowHideCollectionRequest {
pub collection: u32,
pub show: u8,
pub user: u32,
}Fields§
§collection: u32The ID of the collection to show or hide.
show: u8If set, shows the collection in the drop-down list.
user: u32The ID of the user whose drop-down list is being updated.
Implementations§
Trait Implementations§
Source§impl Clone for ShowHideCollectionRequest
impl Clone for ShowHideCollectionRequest
Source§fn clone(&self) -> ShowHideCollectionRequest
fn clone(&self) -> ShowHideCollectionRequest
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 ShowHideCollectionRequest
impl Debug for ShowHideCollectionRequest
impl StructuralPartialEq for ShowHideCollectionRequest
Auto Trait Implementations§
impl Freeze for ShowHideCollectionRequest
impl RefUnwindSafe for ShowHideCollectionRequest
impl Send for ShowHideCollectionRequest
impl Sync for ShowHideCollectionRequest
impl Unpin for ShowHideCollectionRequest
impl UnsafeUnpin for ShowHideCollectionRequest
impl UnwindSafe for ShowHideCollectionRequest
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