Struct rustcn_ui::Resource

source ·
pub struct Resource<T>
where T: 'static,
{ /* private fields */ }

Implementations§

source§

impl<T> Resource<T>

source

pub fn restart(&mut self)

Restart the future with new dependencies.

Will not cancel the previous future, but will ignore any values that it generates.

source

pub fn cancel(&mut self)

Forcefully cancel a future

source

pub fn pause(&mut self)

Pause the future

source

pub fn resume(&mut self)

Resume the future

source

pub fn task(&self) -> Task

Get a handle to the inner task backing this future Modify the task through this handle will cause inconsistent state

source

pub fn finished(&self) -> bool

Is the future currently finished running?

Reading this does not subscribe to the future’s state

source

pub fn state(&self) -> ReadOnlySignal<UseResourceState>

Get the current state of the future.

source

pub fn value(&self) -> ReadOnlySignal<Option<T>>

Get the current value of the future.

Methods from Deref<Target = Signal<Option<T>>>§

source

pub fn take(&self) -> T

Take the value out of the signal, invalidating the signal in the process.

source

pub fn origin_scope(&self) -> ScopeId

Get the scope the signal was created in.

source

pub fn id(&self) -> GenerationalBoxId

Get the generational id of the signal.

Trait Implementations§

source§

impl<T> Deref for Resource<T>

§

type Target = Signal<Option<T>>

The resulting type after dereferencing.
source§

fn deref(&self) -> &<Resource<T> as Deref>::Target

Dereferences the value.

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for Resource<T>

§

impl<T> !Send for Resource<T>

§

impl<T> !Sync for Resource<T>

§

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

§

impl<T> !UnwindSafe for Resource<T>

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

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. 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, O> SuperFrom<T> for O
where O: From<T>,

source§

fn super_from(input: T) -> O

Convert from a type to another type.
source§

impl<T, O, M> SuperInto<O, M> for T
where O: SuperFrom<T, M>,

source§

fn super_into(self) -> O

Convert from a type to another type.
source§

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

source§

fn to<T>(self) -> T
where Self: Into<T>,

Converts to T by calling Into<T>::into.
source§

fn try_to<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Tries to convert to T by calling TryInto<T>::try_into.
source§

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

§

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>,

§

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

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more