Struct Managed

Source
pub struct Managed<T> { /* private fields */ }

Implementations§

Source§

impl<T> Managed<T>

Source

pub fn new(data: T) -> Managed<T>

Source

pub fn new_raw(data: T, lifetime: Lifetime) -> Managed<T>

Source

pub fn into_inner(self) -> (Lifetime, T)

Source

pub fn into_dynamic(self) -> DynamicManaged
where T: 'static,

Source

pub fn renew(self) -> Managed<T>

Source

pub fn lifetime(&self) -> &Lifetime

Source

pub fn read(&self) -> Option<ValueReadAccess<'_, T>>

Source

pub fn write(&mut self) -> Option<ValueWriteAccess<'_, T>>

Source

pub fn consume(self) -> Result<T, Managed<T>>

Source

pub fn borrow(&self) -> Option<ManagedRef<T>>

Source

pub fn borrow_mut(&mut self) -> Option<ManagedRefMut<T>>

Source

pub fn map<U>(self, f: impl FnOnce(T) -> U) -> Managed<U>

Source

pub fn try_map<U>(self, f: impl FnOnce(T) -> Option<U>) -> Option<Managed<U>>

Source

pub unsafe fn as_ptr(&self) -> *const T

§Safety
Source

pub unsafe fn as_mut_ptr(&mut self) -> *mut T

§Safety

Trait Implementations§

Source§

impl<T> Default for Managed<T>
where T: Default,

Source§

fn default() -> Managed<T>

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

impl<T> From<Managed<T>> for ManagedValue<T>

Source§

fn from(value: Managed<T>) -> ManagedValue<T>

Converts to this type from the input type.
Source§

impl<T> TryFrom<ManagedValue<T>> for Managed<T>

Source§

type Error = ()

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

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

Performs the conversion.
Source§

impl<T> ValueDependency<Managed<T>> for ManagedValueDependency

Auto Trait Implementations§

§

impl<T> Freeze for Managed<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Managed<T>
where T: RefUnwindSafe,

§

impl<T> Send for Managed<T>
where T: Send,

§

impl<T> Sync for Managed<T>
where T: Sync,

§

impl<T> Unpin for Managed<T>
where T: Unpin,

§

impl<T> UnwindSafe for Managed<T>
where T: UnwindSafe,

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<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> Finalize for T

Source§

unsafe fn finalize_raw(data: *mut ())

Safety Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Initialize for T
where T: Default,

Source§

fn initialize(&mut self)

Source§

unsafe fn initialize_raw(data: *mut ())

Safety Read more
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, 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

Source§

impl<T> Component for T
where T: Send + Sync + 'static,