Struct ic_cdk::api::call::ManualReply

source ·
pub struct ManualReply<T: ?Sized>(/* private fields */);
Expand description

Pretends to have the Candid type T, but unconditionally errors when serialized.

Usable, but not required, as metadata when using #[query(manual_reply = true)], so an accurate Candid file can still be generated.

Implementations§

source§

impl<T: ?Sized> ManualReply<T>

source

pub const fn empty() -> Self

Constructs a new ManualReply.

source

pub fn all<U>(value: U) -> Self
where U: ArgumentEncoder,

Replies with the given value and returns a new ManualReply, for a useful reply-then-return shortcut.

source

pub fn one<U>(value: U) -> Self
where U: CandidType,

Replies with a one-element tuple around the given value and returns a new ManualReply, for a useful reply-then-return shortcut.

source

pub fn reject(message: impl AsRef<str>) -> Self

Rejects the call with the specified message and returns a new ManualReply, for a useful reply-then-return shortcut.

Trait Implementations§

source§

impl<T> CandidType for ManualReply<T>
where T: CandidType + ?Sized,

source§

fn idl_serialize<S>(&self, _: S) -> Result<(), S::Error>
where S: Serializer,

Unconditionally errors.

source§

fn _ty() -> Type

source§

fn ty() -> Type

source§

fn id() -> TypeId

source§

impl<T: Clone + ?Sized> Clone for ManualReply<T>

source§

fn clone(&self) -> ManualReply<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: Debug + ?Sized> Debug for ManualReply<T>

source§

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

Formats the value using the given formatter. Read more
source§

impl<T: Default + ?Sized> Default for ManualReply<T>

source§

fn default() -> ManualReply<T>

Returns the “default value” for a type. Read more
source§

impl<T: Copy + ?Sized> Copy for ManualReply<T>

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

impl<T> Unpin for ManualReply<T>
where T: Unpin + ?Sized,

§

impl<T> UnwindSafe for ManualReply<T>
where T: UnwindSafe + ?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> 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> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

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

§

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.