Struct rel_core::DefaultBasis
source · [−]pub struct DefaultBasis;
Expand description
The default Basis
.
The settings this basis uses will change depending on the enabled feature flags.
Trait Implementations
sourceimpl Basis for DefaultBasis
impl Basis for DefaultBasis
type FromNativeError = TryFromIntError
type FromNativeError = TryFromIntError
sourcefn from_native_isize(value: isize) -> Result<Self::Isize, Self::FromNativeError>
fn from_native_isize(value: isize) -> Result<Self::Isize, Self::FromNativeError>
sourcefn from_native_usize(value: usize) -> Result<Self::Usize, Self::FromNativeError>
fn from_native_usize(value: usize) -> Result<Self::Usize, Self::FromNativeError>
type ToNativeError = Infallible
type ToNativeError = Infallible
An error occurred during type conversion to a native
isize
or usize
.sourcefn to_native_isize(value: Self::Isize) -> Result<isize, Self::ToNativeError>
fn to_native_isize(value: Self::Isize) -> Result<isize, Self::ToNativeError>
sourcefn to_native_usize(value: Self::Usize) -> Result<usize, Self::ToNativeError>
fn to_native_usize(value: Self::Usize) -> Result<usize, Self::ToNativeError>
Auto Trait Implementations
impl RefUnwindSafe for DefaultBasis
impl Send for DefaultBasis
impl Sync for DefaultBasis
impl Unpin for DefaultBasis
impl UnwindSafe for DefaultBasis
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more