LibState

Struct LibState 

Source
pub struct LibState(/* private fields */);

Implementations§

Source§

impl LibState

Source

pub fn get_or_default<T>(&mut self) -> &mut T
where T: Default + Any + Send + Sync + 'static,

Look up and return the context global library state of type T.

If none is registered in this context for T then create one using T::default

Source

pub fn get_or_else<T, F>(&mut self, f: F) -> &mut T
where T: Any + Send + Sync + 'static, F: FnOnce() -> T,

Look up and return the context global library state of type T.

If none is registered in this context for T then create one using the provided function.

Source

pub fn get<T>(&mut self) -> Option<&T>
where T: Any + Send + Sync + 'static,

Look up and return a reference to the context global library state of type T.

If none is registered in this context for T return None

Source

pub fn get_mut<T>(&mut self) -> Option<&mut T>
where T: Any + Send + Sync + 'static,

Look up and return a mutable reference to the context global library state of type T.

If none is registered return None

Source

pub fn set<T>(&mut self, t: T) -> Option<Box<T>>
where T: Any + Send + Sync + 'static,

Set the context global library state of type T

Any existing state will be returned

Source

pub fn remove<T>(&mut self) -> Option<Box<T>>
where T: Any + Send + Sync + 'static,

Remove and refurn the context global state library state of type T

Trait Implementations§

Source§

impl Default for LibState

Source§

fn default() -> LibState

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

Source§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

Source§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

Source§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V