#[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§
Source§impl<T: Ord, R: Ord> Ord for Coerced<T, R>
impl<T: Ord, R: Ord> Ord for Coerced<T, R>
1.21.0 · 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: PartialOrd, R: PartialOrd> PartialOrd for Coerced<T, R>
impl<T: PartialOrd, R: PartialOrd> PartialOrd 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>> = ...;impl<T: Copy, R: Copy> Copy for Coerced<T, R>
impl<T: Eq, R: Eq> Eq for Coerced<T, R>
impl<T, R> StructuralPartialEq for Coerced<T, R>
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