Struct roperator::resource::ObjectIdRef[][src]

pub struct ObjectIdRef<'a> {
    pub namespace: &'a str,
    pub name: &'a str,
}

An id that borrows its fields

Fields

namespace: &'a strname: &'a str

Implementations

impl<'a> ObjectIdRef<'a>[src]

pub fn new(namespace: &'a str, name: &'a str) -> ObjectIdRef<'a>[src]

Returns a new id with the given namespace and name fields

pub fn to_owned(&self) -> ObjectId[src]

Create an owned ObjectId by copying the borrowed fields to newly allocated ones

pub fn namespace(&self) -> Option<&'a str>[src]

Returns an option containing a non-empty namespace. Will return None if the namespace is an empty string.

pub fn name(&self) -> &'a str[src]

returns the name field

Trait Implementations

impl<'a> Clone for ObjectIdRef<'a>[src]

impl<'a> Debug for ObjectIdRef<'a>[src]

impl<'a> Display for ObjectIdRef<'a>[src]

impl<'a> Eq for ObjectIdRef<'a>[src]

impl<'a> From<&'a ObjectId> for ObjectIdRef<'a>[src]

impl<'a, 'b> From<&'b ObjectIdRef<'a>> for ObjectIdRef<'a>[src]

impl<'a> From<(&'a str, &'a str)> for ObjectIdRef<'a>[src]

impl<'a> Hash for ObjectIdRef<'a>[src]

impl<'a> PartialEq<ObjectId> for ObjectIdRef<'a>[src]

impl<'a> PartialEq<ObjectIdRef<'a>> for ObjectIdRef<'a>[src]

impl<'a> PartialEq<ObjectIdRef<'a>> for ObjectId[src]

impl<'a> StructuralEq for ObjectIdRef<'a>[src]

impl<'a> StructuralPartialEq for ObjectIdRef<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ObjectIdRef<'a>

impl<'a> Send for ObjectIdRef<'a>

impl<'a> Sync for ObjectIdRef<'a>

impl<'a> Unpin for ObjectIdRef<'a>

impl<'a> UnwindSafe for ObjectIdRef<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.