pub struct AndroidAutoSetup { /* private fields */ }Expand description
Token proving that setup has been called. Required to use the library’s
main entry points so that initialisation cannot be forgotten.
Constructed exclusively by setup; users cannot build this type themselves.
The token is Copy so it can be stored and handed to multiple container
restarts without needing to call setup again.
Trait Implementations§
Source§impl Clone for AndroidAutoSetup
impl Clone for AndroidAutoSetup
Source§fn clone(&self) -> AndroidAutoSetup
fn clone(&self) -> AndroidAutoSetup
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 moreimpl Copy for AndroidAutoSetup
Auto Trait Implementations§
impl Freeze for AndroidAutoSetup
impl RefUnwindSafe for AndroidAutoSetup
impl Send for AndroidAutoSetup
impl Sync for AndroidAutoSetup
impl Unpin for AndroidAutoSetup
impl UnsafeUnpin for AndroidAutoSetup
impl UnwindSafe for AndroidAutoSetup
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