pub struct ServiceName(/* private fields */);Expand description
Validated service name carried in logs and telemetry.
Implementations§
Source§impl ServiceName
impl ServiceName
Sourcepub fn new(
value: impl Into<String>,
) -> Result<ServiceName, ValueValidationError>
pub fn new( value: impl Into<String>, ) -> Result<ServiceName, ValueValidationError>
Creates a validated value from caller-provided string data.
§Errors
Returns ValueValidationError when the supplied string does
not satisfy the documented validation rules for this type.
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<ServiceName, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ServiceName, <__D as Deserializer<'de>>::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 Hash for ServiceName
impl Hash for ServiceName
Source§impl PartialEq for ServiceName
impl PartialEq for ServiceName
Source§impl Serialize for ServiceName
impl Serialize for ServiceName
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl TryFrom<String> for ServiceName
impl TryFrom<String> for ServiceName
Source§type Error = ValueValidationError
type Error = ValueValidationError
The type returned in the event of a conversion error.
Source§fn try_from(
value: String,
) -> Result<ServiceName, <ServiceName as TryFrom<String>>::Error>
fn try_from( value: String, ) -> Result<ServiceName, <ServiceName as TryFrom<String>>::Error>
Performs the conversion.
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 UnsafeUnpin 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