pub struct TargetCategory(/* private fields */);Expand description
Validated stable target category for log events.
Implementations§
Source§impl TargetCategory
impl TargetCategory
Sourcepub fn new(
value: impl Into<String>,
) -> Result<TargetCategory, ValueValidationError>
pub fn new( value: impl Into<String>, ) -> Result<TargetCategory, 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 TargetCategory
impl AsRef<str> for TargetCategory
Source§impl Clone for TargetCategory
impl Clone for TargetCategory
Source§fn clone(&self) -> TargetCategory
fn clone(&self) -> TargetCategory
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 TargetCategory
impl Debug for TargetCategory
Source§impl<'de> Deserialize<'de> for TargetCategory
impl<'de> Deserialize<'de> for TargetCategory
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TargetCategory, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TargetCategory, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for TargetCategory
impl Display for TargetCategory
Source§impl Hash for TargetCategory
impl Hash for TargetCategory
Source§impl PartialEq for TargetCategory
impl PartialEq for TargetCategory
Source§impl Serialize for TargetCategory
impl Serialize for TargetCategory
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 TargetCategory
impl TryFrom<String> for TargetCategory
Source§type Error = ValueValidationError
type Error = ValueValidationError
The type returned in the event of a conversion error.
Source§fn try_from(
value: String,
) -> Result<TargetCategory, <TargetCategory as TryFrom<String>>::Error>
fn try_from( value: String, ) -> Result<TargetCategory, <TargetCategory as TryFrom<String>>::Error>
Performs the conversion.
impl Eq for TargetCategory
impl StructuralPartialEq for TargetCategory
Auto Trait Implementations§
impl Freeze for TargetCategory
impl RefUnwindSafe for TargetCategory
impl Send for TargetCategory
impl Sync for TargetCategory
impl Unpin for TargetCategory
impl UnsafeUnpin for TargetCategory
impl UnwindSafe for TargetCategory
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