#[repr(transparent)]pub struct Coerced<T, R> {
value: T,
_marker: PhantomData<R>,
}Expand description
Wrapper for values coerced from an R native type during conversion.
This enables using non-native Rust types in collections read from R:
ⓘ
// Read a Vec of i64 from R integers (i32)
let vec: Vec<Coerced<i64, i32>> = TryFromSexp::try_from_sexp(sexp)?;
// Extract the values
let i64_vec: Vec<i64> = vec.into_iter().map(Coerced::into_inner).collect();The type parameters are:
T: The target Rust type you wantR: The R-native type to read and coerce from
Fields§
§value: T§_marker: PhantomData<R>Implementations§
Source§impl<T, R> Coerced<T, R>
impl<T, R> Coerced<T, R>
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Extract the inner value.
Sourcepub fn as_inner_mut(&mut self) -> &mut T
pub fn as_inner_mut(&mut self) -> &mut T
Get a mutable reference to the inner value.
Trait Implementations§
impl<T: Copy, R: Copy> Copy for Coerced<T, R>
Source§impl<T: Eq, R: Eq> Eq for Coerced<T, R>
impl<T: Eq, R: Eq> Eq for Coerced<T, R>
Source§#[doc(hidden)]fn assert_fields_are_eq(&self)
#[doc(hidden)]fn assert_fields_are_eq(&self)
🔬This is a nightly-only experimental API. (
derive_eq_internals)1.0.0 (const: unstable) · Source§#[doc(hidden)]fn assert_receiver_is_total_eq(&self)
#[doc(hidden)]fn assert_receiver_is_total_eq(&self)
👎Deprecated since 1.95.0:
implementation detail of #[derive(Eq)]
Source§impl<T: Ord, R: Ord> Ord for Coerced<T, R>
impl<T: Ord, R: Ord> Ord for Coerced<T, R>
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<T: PartialEq, R: PartialEq> PartialEq for Coerced<T, R>
impl<T: PartialEq, R: PartialEq> PartialEq for Coerced<T, R>
Source§impl<T: PartialOrd, R: PartialOrd> PartialOrd for Coerced<T, R>
impl<T: PartialOrd, R: PartialOrd> PartialOrd for Coerced<T, R>
Source§#[doc(hidden)]fn __chaining_lt(&self, other: &Rhs) -> ControlFlow<bool>
#[doc(hidden)]fn __chaining_lt(&self, other: &Rhs) -> ControlFlow<bool>
🔬This is a nightly-only experimental API. (
partial_ord_chaining_methods)If
self == other, returns ControlFlow::Continue(()).
Otherwise, returns ControlFlow::Break(self < other). Read moreSource§#[doc(hidden)]fn __chaining_le(&self, other: &Rhs) -> ControlFlow<bool>
#[doc(hidden)]fn __chaining_le(&self, other: &Rhs) -> ControlFlow<bool>
🔬This is a nightly-only experimental API. (
partial_ord_chaining_methods)Same as
__chaining_lt, but for <= instead of <.Source§#[doc(hidden)]fn __chaining_gt(&self, other: &Rhs) -> ControlFlow<bool>
#[doc(hidden)]fn __chaining_gt(&self, other: &Rhs) -> ControlFlow<bool>
🔬This is a nightly-only experimental API. (
partial_ord_chaining_methods)Same as
__chaining_lt, but for > instead of <.Source§#[doc(hidden)]fn __chaining_ge(&self, other: &Rhs) -> ControlFlow<bool>
#[doc(hidden)]fn __chaining_ge(&self, other: &Rhs) -> ControlFlow<bool>
🔬This is a nightly-only experimental API. (
partial_ord_chaining_methods)Same as
__chaining_lt, but for >= instead of <.impl<T: PartialEq, R: PartialEq> StructuralPartialEq for Coerced<T, R>
Source§impl<T, R> TryFromSexp for Coerced<T, R>where
R: TryFromSexp + TryCoerce<T>,
<R as TryFromSexp>::Error: Into<SexpError>,
<R as TryCoerce<T>>::Error: Debug,
Convert R value to Coerced<T, R> by reading R and coercing to T.
impl<T, R> TryFromSexp for Coerced<T, R>where
R: TryFromSexp + TryCoerce<T>,
<R as TryFromSexp>::Error: Into<SexpError>,
<R as TryCoerce<T>>::Error: Debug,
Convert R value to Coerced<T, R> by reading R and coercing to T.
This enables reading non-native Rust types from R with coercion:
ⓘ
// Read i64 from R integer (i32)
let val: Coerced<i64, i32> = TryFromSexp::try_from_sexp(sexp)?;
let i64_val: i64 = val.into_inner();
// Works with collections too:
let vec: Vec<Coerced<i64, i32>> = ...;
let set: HashSet<Coerced<NonZeroU32, i32>> = ...;Auto Trait Implementations§
impl<T, R> Freeze for Coerced<T, R>where
T: Freeze,
impl<T, R> RefUnwindSafe for Coerced<T, R>where
T: RefUnwindSafe,
R: RefUnwindSafe,
impl<T, R> Send for Coerced<T, R>
impl<T, R> Sync for Coerced<T, R>
impl<T, R> Unpin for Coerced<T, R>
impl<T, R> UnsafeUnpin for Coerced<T, R>where
T: UnsafeUnpin,
impl<T, R> UnwindSafe for Coerced<T, R>where
T: UnwindSafe,
R: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> Printable for T
Source§impl<T> RPartialOrd for Twhere
T: PartialOrd,
impl<T> RPartialOrd for Twhere
T: PartialOrd,
Source§impl<T> SizeHint for Twhere
T: ?Sized,
impl<T> SizeHint for Twhere
T: ?Sized,
Source§default fn lower_bound(&self) -> usize
default fn lower_bound(&self) -> usize
🔬This is a nightly-only experimental API. (
core_io_internals)Returns a lower bound on the number of elements this container-like item
contains.
For example, an array
[u8; 12] could return any value between 0 and
12 inclusively as a correct implementation. Read moreSource§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)]const SIZE: usize = _
#[doc(hidden)]const SIZE: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const ALIGN: usize = _
#[doc(hidden)]const ALIGN: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const ALIGNMENT: Alignment = _
#[doc(hidden)]const ALIGNMENT: Alignment = _
🔬This is a nightly-only experimental API. (
ptr_alignment_type)Source§#[doc(hidden)]const IS_ZST: bool = _
#[doc(hidden)]const IS_ZST: bool = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const LAYOUT: Layout = _
#[doc(hidden)]const LAYOUT: Layout = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const MAX_SLICE_LEN: usize = _
#[doc(hidden)]const MAX_SLICE_LEN: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)The largest safe length for a
[Self]. Read moreLayout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.