pub struct ServiceName(/* private fields */);Expand description
A unique identifier for a service name.
Package names must be:
- non-empty
- ASCII printable
- first character must be a letter
- contain only letters, numbers, underscores, and hyphens
Implementations§
Source§impl ServiceName
impl ServiceName
Sourcepub fn new<S: Into<String>>(s: S) -> Result<Self, InvalidConfigIdent>
pub fn new<S: Into<String>>(s: S) -> Result<Self, InvalidConfigIdent>
Creates a new identifier at runtime.
Sourcepub fn new_static(s: &'static str) -> Result<Self, InvalidConfigIdent>
pub fn new_static(s: &'static str) -> Result<Self, InvalidConfigIdent>
Creates a new identifier from a static string.
Trait Implementations§
Source§impl AsRef<str> for ServiceName
impl AsRef<str> for ServiceName
Source§impl Clone for ServiceName
impl Clone for ServiceName
Source§fn clone(&self) -> ServiceName
fn clone(&self) -> ServiceName
Returns a duplicate of the value. Read more
1.0.0 · 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 ServiceName
impl Debug for ServiceName
Source§impl<'de> Deserialize<'de> for ServiceName
impl<'de> Deserialize<'de> for ServiceName
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ServiceName
impl Display for ServiceName
Source§impl FromStr for ServiceName
impl FromStr for ServiceName
Source§impl Hash for ServiceName
impl Hash for ServiceName
Source§impl Ord for ServiceName
impl Ord for ServiceName
Source§fn cmp(&self, other: &ServiceName) -> Ordering
fn cmp(&self, other: &ServiceName) -> Ordering
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 PartialEq for ServiceName
impl PartialEq for ServiceName
Source§impl PartialOrd for ServiceName
impl PartialOrd for ServiceName
Source§impl Serialize for ServiceName
impl Serialize for ServiceName
impl Eq for ServiceName
impl StructuralPartialEq for ServiceName
Auto Trait Implementations§
impl Freeze for ServiceName
impl RefUnwindSafe for ServiceName
impl Send for ServiceName
impl Sync for ServiceName
impl Unpin for ServiceName
impl UnwindSafe for ServiceName
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>
fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.