Struct agde::sync::ResponseBuilder

source ·
pub struct ResponseBuilder<'a> { /* private fields */ }
Expand description

Builder for a Response.

Follow the instructions from how you got this builder and insert the appropriate resources. Execute the action returned by the aforementioned function.

Implementations§

source§

impl<'a> ResponseBuilder<'a>

source

pub fn next_signature( &mut self ) -> Option<(&str, &Signature, Option<&mut Unwinder<'a>>)>

Use this in a while let Some((resource, signature)) = response_builder.next_signature() loop to add all the returned values to Self::add_diff.

If you don’t have a resource, just don’t call Self::add_diff. Agde will then automatically send a delete event then.

source

pub fn unwinder(&mut self) -> Option<&mut Unwinder<'a>>

Returns the unwinder (if any) to use for the resource before adding it.

source

pub fn add_diff(&mut self, resource: String, diff: Difference) -> &mut Self

Tell the requester their resource needs to apply diff to get our data.

You have to unwind resource before getting the diff if Self::unwinder returns Some.

Panics

Panics if you’ve called this with the same resource before.

source

pub fn finish(self, manager: &Manager) -> Response

Finish the response.

Trait Implementations§

source§

impl<'a> Debug for ResponseBuilder<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for ResponseBuilder<'a>

§

impl<'a> Send for ResponseBuilder<'a>

§

impl<'a> Sync for ResponseBuilder<'a>

§

impl<'a> Unpin for ResponseBuilder<'a>

§

impl<'a> UnwindSafe for ResponseBuilder<'a>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
§

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

§

fn vzip(self) -> V