Skip to main content

Selection

Struct Selection 

Source
pub struct Selection<'d> { /* private fields */ }
Expand description

One operation the user named, with its arguments read and its gate answered — everything needed to send it, and nothing sent yet.

This is the seam an adopter puts a check of their own into. send consumes it, so the request is built once and cannot be sent twice.

Implementations§

Source§

impl<'d> Selection<'d>

Source

pub fn operation(&self) -> &'d Operation

The operation the subcommand named.

Source

pub fn values(&self) -> &Values

The arguments, under the document’s own names rather than the flags they arrived as. A body a generated type should vet is selection.values().payload().

Source

pub fn answers(&self) -> &Answers

What the user answered at the gate: the write confirmation, and each named gate the operation carries. A read answers nothing, because a read is asked nothing.

Source

pub fn send<C: SyncClient>( self, client: &C, base: &Uri, ) -> Result<Outcome, DispatchError>

Build the request, put it to the gate, and do what the gate decided.

Trait Implementations§

Source§

impl<'d> Debug for Selection<'d>

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'d> Freeze for Selection<'d>

§

impl<'d> RefUnwindSafe for Selection<'d>

§

impl<'d> Send for Selection<'d>

§

impl<'d> Sync for Selection<'d>

§

impl<'d> Unpin for Selection<'d>

§

impl<'d> UnsafeUnpin for Selection<'d>

§

impl<'d> UnwindSafe for Selection<'d>

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

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

fn try_from(value: U) -> Result<T, !>

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.