Struct artichoke_backend::extn::core::kernel::integer::IntegerString
source · [−]pub struct IntegerString<'a>(_);
Implementations
sourceimpl<'a> IntegerString<'a>
impl<'a> IntegerString<'a>
Trait Implementations
sourceimpl<'a> Clone for IntegerString<'a>
impl<'a> Clone for IntegerString<'a>
sourcefn clone(&self) -> IntegerString<'a>
fn clone(&self) -> IntegerString<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for IntegerString<'a>
impl<'a> Debug for IntegerString<'a>
sourceimpl<'a> Default for IntegerString<'a>
impl<'a> Default for IntegerString<'a>
sourcefn default() -> IntegerString<'a>
fn default() -> IntegerString<'a>
Returns the “default value” for a type. Read more
sourceimpl<'a> From<&'a str> for IntegerString<'a>
impl<'a> From<&'a str> for IntegerString<'a>
sourceimpl<'a> Hash for IntegerString<'a>
impl<'a> Hash for IntegerString<'a>
sourceimpl<'a> Ord for IntegerString<'a>
impl<'a> Ord for IntegerString<'a>
sourceimpl<'a> PartialEq<IntegerString<'a>> for IntegerString<'a>
impl<'a> PartialEq<IntegerString<'a>> for IntegerString<'a>
sourcefn eq(&self, other: &IntegerString<'a>) -> bool
fn eq(&self, other: &IntegerString<'a>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &IntegerString<'a>) -> bool
fn ne(&self, other: &IntegerString<'a>) -> bool
This method tests for !=
.
sourceimpl<'a> PartialOrd<IntegerString<'a>> for IntegerString<'a>
impl<'a> PartialOrd<IntegerString<'a>> for IntegerString<'a>
sourcefn partial_cmp(&self, other: &IntegerString<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &IntegerString<'a>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<'a> TryConvertMut<&'a mut Value, IntegerString<'a>> for Artichoke
impl<'a> TryConvertMut<&'a mut Value, IntegerString<'a>> for Artichoke
sourcefn try_convert_mut(
&mut self,
value: &'a mut Value
) -> Result<IntegerString<'a>, Self::Error>
fn try_convert_mut(
&mut self,
value: &'a mut Value
) -> Result<IntegerString<'a>, Self::Error>
Performs the fallible conversion. Read more
impl<'a> Copy for IntegerString<'a>
impl<'a> Eq for IntegerString<'a>
impl<'a> StructuralEq for IntegerString<'a>
impl<'a> StructuralPartialEq for IntegerString<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for IntegerString<'a>
impl<'a> Send for IntegerString<'a>
impl<'a> Sync for IntegerString<'a>
impl<'a> Unpin for IntegerString<'a>
impl<'a> UnwindSafe for IntegerString<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more