Enum InertiaProp

Source
pub enum InertiaProp<'a> {
    Data(Result<Value, InertiaError>),
    Lazy(Arc<dyn Fn() -> Pin<Box<dyn Future<Output = Result<Value, InertiaError>> + Send>> + Send + Sync>),
    Always(Result<Value, InertiaError>),
    Demand(Arc<dyn Fn() -> Pin<Box<dyn Future<Output = Result<Value, InertiaError>> + Send>> + Send + Sync>),
    Deferred(Arc<dyn Fn() -> Pin<Box<dyn Future<Output = Result<Value, InertiaError>> + Send>> + Send + Sync>, Option<&'a str>),
    Mergeable(Box<InertiaProp<'a>>),
}

Variants§

§

Data(Result<Value, InertiaError>)

  • ALWAYS included on standard visits
  • OPTIONALLY included on partial reloads
  • ALWAYS evaluated
§

Lazy(Arc<dyn Fn() -> Pin<Box<dyn Future<Output = Result<Value, InertiaError>> + Send>> + Send + Sync>)

  • ALWAYS included on standard visits
  • OPTIONALLY included on partial reloads
  • ONLY evaluated when included
§

Always(Result<Value, InertiaError>)

  • ALWAYS included on standard visits
  • ALWAYS included on partial reloads (even if not requested or excepted)
  • ALWAYS evaluated
§

Demand(Arc<dyn Fn() -> Pin<Box<dyn Future<Output = Result<Value, InertiaError>> + Send>> + Send + Sync>)

  • NEVER included on standard visits
  • OPTIONALLY included on partial reloads
  • ONLY evaluated when needed
§

Deferred(Arc<dyn Fn() -> Pin<Box<dyn Future<Output = Result<Value, InertiaError>> + Send>> + Send + Sync>, Option<&'a str>)

Exactly the same as InertiaProp::Demand, except that it will be automatically fetched by Inertia when the page is first loaded.

Refer to Deferred Props for more details.

§

Mergeable(Box<InertiaProp<'a>>)

Make a property mergeable. Refer to Merging Props documentation for more details.

It can only hold the InertiaProp::Data and InertiaProp::Deferred variants of InertiaProp.

Implementations§

Source§

impl<'a> InertiaProp<'a>

Source

pub fn into_mergeable(self) -> InertiaProp<'a>

Converts an InertiaProp to InertiaMergeableProp`.

§Panics

Will panic if the prop isn’t neither InertiaProp::Data nor InertiaProp::Deferred variants.

Source

pub fn data<T>(value: T) -> InertiaProp<'a>
where T: Serialize,

Source

pub fn always<T>(value: T) -> InertiaProp<'a>
where T: Serialize,

Source

pub fn merge<T>(value: T) -> InertiaProp<'a>
where T: Serialize,

Source

pub fn lazy( resolver: Arc<dyn Fn() -> Pin<Box<dyn Future<Output = Result<Value, InertiaError>> + Send>> + Send + Sync>, ) -> InertiaProp<'a>

Source

pub fn demand( resolver: Arc<dyn Fn() -> Pin<Box<dyn Future<Output = Result<Value, InertiaError>> + Send>> + Send + Sync>, ) -> InertiaProp<'a>

Source

pub fn defer( resolver: Arc<dyn Fn() -> Pin<Box<dyn Future<Output = Result<Value, InertiaError>> + Send>> + Send + Sync>, ) -> InertiaProp<'a>

Source

pub fn defer_with_group( resolver: Arc<dyn Fn() -> Pin<Box<dyn Future<Output = Result<Value, InertiaError>> + Send>> + Send + Sync>, group: &'a str, ) -> InertiaProp<'a>

Trait Implementations§

Source§

impl<'a> Clone for InertiaProp<'a>

Source§

fn clone(&self) -> InertiaProp<'a>

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for InertiaProp<'a>

§

impl<'a> !RefUnwindSafe for InertiaProp<'a>

§

impl<'a> Send for InertiaProp<'a>

§

impl<'a> Sync for InertiaProp<'a>

§

impl<'a> Unpin for InertiaProp<'a>

§

impl<'a> !UnwindSafe for InertiaProp<'a>

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, dest: *mut u8)

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

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
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.
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
Source§

impl<T> ErasedDestructor for T
where T: 'static,