pub enum View {
Inbox,
Archived,
}
Expand description
A Hangouts view collection.
Variants§
Implementations§
Source§impl View
impl View
Sourcepub fn is_inbox(&self) -> bool
pub fn is_inbox(&self) -> bool
Returns true
if the view is Self::Inbox
.
Sourcepub fn is_archived(&self) -> bool
pub fn is_archived(&self) -> bool
Returns true
if the view is Self::Archived
.
Trait Implementations§
impl StructuralPartialEq for View
Auto Trait Implementations§
impl Freeze for View
impl RefUnwindSafe for View
impl Send for View
impl Sync for View
impl Unpin for View
impl UnwindSafe for View
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