pub enum ConstOwner<'a> {
Interface(&'a Interface),
Parcelable(&'a Parcelable),
}
Variants§
Interface(&'a Interface)
Parcelable(&'a Parcelable)
Implementations§
Trait Implementations§
Source§impl<'a> Clone for ConstOwner<'a>
impl<'a> Clone for ConstOwner<'a>
Source§fn clone(&self) -> ConstOwner<'a>
fn clone(&self) -> ConstOwner<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for ConstOwner<'a>
impl<'a> Debug for ConstOwner<'a>
Auto Trait Implementations§
impl<'a> Freeze for ConstOwner<'a>
impl<'a> RefUnwindSafe for ConstOwner<'a>
impl<'a> Send for ConstOwner<'a>
impl<'a> Sync for ConstOwner<'a>
impl<'a> Unpin for ConstOwner<'a>
impl<'a> UnwindSafe for ConstOwner<'a>
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