[−][src]Struct dbus_message_parser::ObjectPath
This represents a object path.
Implementations
impl ObjectPath[src]
pub fn append(&mut self, element: &str) -> bool[src]
Append an element to the object path.
Returns true if the new element could be appended, otherwise false.
An element cannot be appended if the element contain a character, which is not allowed.
Example
let mut object_path = ObjectPath::try_from("/object").unwrap(); assert!(object_path.append("path")); assert!(!object_path.append("/path")); assert_eq!(&object_path, "/object/path");
pub fn starts_with(&self, base: &ObjectPath) -> bool[src]
Determines whether base is a prefix of self.
Example
let base = ObjectPath::try_from("/object").unwrap(); let path_1 = ObjectPath::try_from("/object/path").unwrap(); let path_2 = ObjectPath::try_from("/object_/path").unwrap(); assert!(path_1.starts_with(&base)); assert!(!path_2.starts_with(&base)); assert!(!base.starts_with(&base));
pub fn strip_prefix_elements<'a, 'b>(
&'a self,
base: &'b ObjectPath
) -> Option<Split<'a, char>>[src]
&'a self,
base: &'b ObjectPath
) -> Option<Split<'a, char>>
Returns a Split object with the prefix removed.
Example
let base = ObjectPath::try_from("/object").unwrap(); let path_1 = ObjectPath::try_from("/object/path").unwrap(); let path_2 = ObjectPath::try_from("/object_/path").unwrap(); let path_3 = ObjectPath::try_from("/object/path/element").unwrap(); let path_1_base_vec: Vec<&str> = path_1.strip_prefix_elements(&base).unwrap().collect(); let path_3_base_vec: Vec<&str> = path_3.strip_prefix_elements(&base).unwrap().collect(); assert_eq!(path_1_base_vec, vec!["path"]); assert!(path_2.strip_prefix_elements(&base).is_none()); assert_eq!(path_3_base_vec, vec!["path", "element"]); assert!(base.strip_prefix_elements(&base).is_none());
Methods from Deref<Target = String>
pub fn as_str(&self) -> &str1.7.0[src]
Extracts a string slice containing the entire String.
Examples
Basic usage:
let s = String::from("foo"); assert_eq!("foo", s.as_str());
pub fn capacity(&self) -> usize1.0.0[src]
Returns this String's capacity, in bytes.
Examples
Basic usage:
let s = String::with_capacity(10); assert!(s.capacity() >= 10);
pub fn as_bytes(&self) -> &[u8]1.0.0[src]
Returns a byte slice of this String's contents.
The inverse of this method is from_utf8.
Examples
Basic usage:
let s = String::from("hello"); assert_eq!(&[104, 101, 108, 108, 111], s.as_bytes());
pub fn len(&self) -> usize1.0.0[src]
Returns the length of this String, in bytes, not chars or
graphemes. In other words, it may 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);
pub fn is_empty(&self) -> bool1.0.0[src]
Returns true if this String has a length of zero, and false otherwise.
Examples
Basic usage:
let mut v = String::new(); assert!(v.is_empty()); v.push('a'); assert!(!v.is_empty());
Trait Implementations
impl Clone for ObjectPath[src]
pub fn clone(&self) -> ObjectPath[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ObjectPath[src]
impl Default for ObjectPath[src]
impl Deref for ObjectPath[src]
type Target = String
The resulting type after dereferencing.
pub fn deref(&self) -> &Self::Target[src]
impl Display for ObjectPath[src]
impl Eq for ObjectPath[src]
impl From<ObjectPath> for String[src]
pub fn from(object_path: ObjectPath) -> Self[src]
impl Hash for ObjectPath[src]
pub fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Ord for ObjectPath[src]
pub fn cmp(&self, other: &ObjectPath) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<ObjectPath> for ObjectPath[src]
pub fn eq(&self, other: &ObjectPath) -> bool[src]
pub fn ne(&self, other: &ObjectPath) -> bool[src]
impl PartialEq<str> for ObjectPath[src]
pub fn eq(&self, other: &str) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<ObjectPath> for ObjectPath[src]
pub fn partial_cmp(&self, other: &ObjectPath) -> Option<Ordering>[src]
pub fn lt(&self, other: &ObjectPath) -> bool[src]
pub fn le(&self, other: &ObjectPath) -> bool[src]
pub fn gt(&self, other: &ObjectPath) -> bool[src]
pub fn ge(&self, other: &ObjectPath) -> bool[src]
impl StructuralEq for ObjectPath[src]
impl StructuralPartialEq for ObjectPath[src]
impl<'_> TryFrom<&'_ str> for ObjectPath[src]
type Error = ObjectPathError
The type returned in the event of a conversion error.
pub fn try_from(value: &str) -> Result<Self, Self::Error>[src]
impl TryFrom<String> for ObjectPath[src]
Auto Trait Implementations
impl RefUnwindSafe for ObjectPath
impl Send for ObjectPath
impl Sync for ObjectPath
impl Unpin for ObjectPath
impl UnwindSafe for ObjectPath
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,