Struct kmip_protocol::types::common::UniqueIdentifier [−][src]
pub struct UniqueIdentifier(pub String);Expand description
See KMIP 1.0 section 3.1 Unique Identifier.
Tuple Fields
0: StringMethods from Deref<Target = String>
Extracts a string slice containing the entire String.
Examples
Basic usage:
let s = String::from("foo");
assert_eq!("foo", s.as_str());Returns this String’s capacity, in bytes.
Examples
Basic usage:
let s = String::with_capacity(10);
assert!(s.capacity() >= 10);Returns the length of this String, in bytes, not chars or
graphemes. In other words, it might not be what a human considers the
length of the string.
Examples
Basic usage:
let a = String::from("foo");
assert_eq!(a.len(), 3);
let fancy_f = String::from("ƒoo");
assert_eq!(fancy_f.len(), 4);
assert_eq!(fancy_f.chars().count(), 3);Trait Implementations
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
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for UniqueIdentifier
impl Send for UniqueIdentifier
impl Sync for UniqueIdentifier
impl Unpin for UniqueIdentifier
impl UnwindSafe for UniqueIdentifier
Blanket Implementations
Mutably borrows from an owned value. Read more