Struct Yeet

Source
pub struct Yeet<T>(pub T);
๐Ÿ”ฌThis is a nightly-only experimental API. (try_trait_v2_yeet #96374)
Expand description

Implement FromResidual<Yeet<T>> on your type to enable do yeet expr syntax in functions returning your type.

Tuple Fieldsยง

ยง0: T
๐Ÿ”ฌThis is a nightly-only experimental API. (try_trait_v2_yeet #96374)

Trait Implementationsยง

Sourceยง

impl<T> Debug for Yeet<T>
where T: Debug,

Sourceยง

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

Formats the value using the given formatter. Read more
Sourceยง

impl<T> FromResidual<Yeet<()>> for Option<T>

Sourceยง

fn from_residual(_: Yeet<()>) -> Option<T>

๐Ÿ”ฌThis is a nightly-only experimental API. (try_trait_v2 #84277)
Constructs the type from a compatible Residual type. Read more
Sourceยง

impl<T, E, F> FromResidual<Yeet<E>> for Result<T, F>
where F: From<E>,

Sourceยง

fn from_residual(_: Yeet<E>) -> Result<T, F>

๐Ÿ”ฌThis is a nightly-only experimental API. (try_trait_v2 #84277)
Constructs the type from a compatible Residual type. Read more

Auto Trait Implementationsยง

ยง

impl<T> Freeze for Yeet<T>
where T: Freeze,

ยง

impl<T> RefUnwindSafe for Yeet<T>
where T: RefUnwindSafe,

ยง

impl<T> Send for Yeet<T>
where T: Send,

ยง

impl<T> Sync for Yeet<T>
where T: Sync,

ยง

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

ยง

impl<T> UnwindSafe for Yeet<T>
where T: UnwindSafe,

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 = 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.