raui_core

Struct ManagedLazy

source
pub struct ManagedLazy<T>
where T: ?Sized,
{ /* private fields */ }

Implementations§

source§

impl<T> ManagedLazy<T>
where T: ?Sized,

source

pub fn new(data: &mut T, lifetime: LifetimeLazy) -> ManagedLazy<T>

source

pub unsafe fn new_raw( data: *mut T, lifetime: LifetimeLazy, ) -> Option<ManagedLazy<T>>

§Safety
source

pub fn make(data: &mut T) -> (ManagedLazy<T>, Lifetime)

source

pub unsafe fn make_raw(data: *mut T) -> Option<(ManagedLazy<T>, Lifetime)>

§Safety
source

pub fn into_inner(self) -> (LifetimeLazy, *mut T)

source

pub fn into_dynamic(self) -> DynamicManagedLazy

source

pub fn lifetime(&self) -> &LifetimeLazy

source

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

source

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

source

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

source

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

source

pub unsafe fn map<U>(self, f: impl FnOnce(&mut T) -> &mut U) -> ManagedLazy<U>

§Safety
source

pub unsafe fn try_map<U>( self, f: impl FnOnce(&mut T) -> Option<&mut U>, ) -> Option<ManagedLazy<U>>

§Safety
source

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

§Safety
source

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

§Safety

Trait Implementations§

source§

impl<T> Clone for ManagedLazy<T>
where T: ?Sized,

source§

fn clone(&self) -> ManagedLazy<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T> From<ManagedLazy<T>> for ManagedValue<T>

source§

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

Converts to this type from the input type.
source§

impl<T: OptionsViewProxy + 'static> From<ManagedLazy<T>> for OptionsInput

source§

fn from(value: ManagedLazy<T>) -> Self

Converts to this type from the input type.
source§

impl<T: SliderViewProxy + 'static> From<ManagedLazy<T>> for SliderInput

source§

fn from(value: ManagedLazy<T>) -> Self

Converts to this type from the input type.
source§

impl<T: TextInputProxy + 'static> From<ManagedLazy<T>> for TextInput

source§

fn from(value: ManagedLazy<T>) -> Self

Converts to this type from the input type.
source§

impl<T> TryFrom<ManagedValue<T>> for ManagedLazy<T>

source§

type Error = ()

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

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

Performs the conversion.
source§

impl<T> Send for ManagedLazy<T>
where T: Send + ?Sized,

source§

impl<T> Sync for ManagedLazy<T>
where T: Sync + ?Sized,

Auto Trait Implementations§

§

impl<T> Freeze for ManagedLazy<T>
where T: ?Sized,

§

impl<T> RefUnwindSafe for ManagedLazy<T>
where T: RefUnwindSafe + ?Sized,

§

impl<T> Unpin for ManagedLazy<T>
where T: ?Sized,

§

impl<T> UnwindSafe for ManagedLazy<T>
where T: RefUnwindSafe + ?Sized,

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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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, 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> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.