pub struct MlTrainingRunId(/* private fields */);Implementations§
Source§impl MlTrainingRunId
impl MlTrainingRunId
pub fn new(value: impl AsRef<str>) -> Result<MlTrainingRunId, MlTrainingError>
pub fn as_str(&self) -> &str
Trait Implementations§
Source§impl AsRef<str> for MlTrainingRunId
impl AsRef<str> for MlTrainingRunId
Source§impl Clone for MlTrainingRunId
impl Clone for MlTrainingRunId
Source§fn clone(&self) -> MlTrainingRunId
fn clone(&self) -> MlTrainingRunId
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MlTrainingRunId
impl Debug for MlTrainingRunId
Source§impl Display for MlTrainingRunId
impl Display for MlTrainingRunId
Source§impl FromStr for MlTrainingRunId
impl FromStr for MlTrainingRunId
Source§type Err = MlTrainingError
type Err = MlTrainingError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<MlTrainingRunId, <MlTrainingRunId as FromStr>::Err>
fn from_str( value: &str, ) -> Result<MlTrainingRunId, <MlTrainingRunId as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for MlTrainingRunId
impl Hash for MlTrainingRunId
Source§impl Ord for MlTrainingRunId
impl Ord for MlTrainingRunId
Source§fn cmp(&self, other: &MlTrainingRunId) -> Ordering
fn cmp(&self, other: &MlTrainingRunId) -> Ordering
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 PartialEq for MlTrainingRunId
impl PartialEq for MlTrainingRunId
Source§fn eq(&self, other: &MlTrainingRunId) -> bool
fn eq(&self, other: &MlTrainingRunId) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MlTrainingRunId
impl PartialOrd for MlTrainingRunId
Source§impl TryFrom<&str> for MlTrainingRunId
impl TryFrom<&str> for MlTrainingRunId
Source§type Error = MlTrainingError
type Error = MlTrainingError
The type returned in the event of a conversion error.
Source§fn try_from(
value: &str,
) -> Result<MlTrainingRunId, <MlTrainingRunId as TryFrom<&str>>::Error>
fn try_from( value: &str, ) -> Result<MlTrainingRunId, <MlTrainingRunId as TryFrom<&str>>::Error>
Performs the conversion.
impl Eq for MlTrainingRunId
impl StructuralPartialEq for MlTrainingRunId
Auto Trait Implementations§
impl Freeze for MlTrainingRunId
impl RefUnwindSafe for MlTrainingRunId
impl Send for MlTrainingRunId
impl Sync for MlTrainingRunId
impl Unpin for MlTrainingRunId
impl UnsafeUnpin for MlTrainingRunId
impl UnwindSafe for MlTrainingRunId
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