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