[][src]Struct clgit::Name

pub struct Name(_);

A git file or tree name (e.g. ".gitignore") - typically UTF8, but not guaranteed.

Implementations

impl Name[src]

pub fn from(v: impl Into<Self>) -> Self[src]

Construct a Name from a String, &str, Vec<u8>, or &[u8]

pub fn as_str(&self) -> Option<&str>[src]

Get this Name as a UTF8 string. Use as_str_lossy if you don't care about preserving non-UTF8 byte sequences.

pub fn as_str_lossy(&self) -> &str[src]

Get this Name as a UTF8 string. If the original name wasn't UTF8, this won't be exactly the same as the original.

pub fn as_bytes(&self) -> Option<&[u8]>[src]

Get this Name as a series of bytes. If the original name was an OsString or PathBuf, this might fail.

Trait Implementations

impl Borrow<str> for Name[src]

impl Clone for Name[src]

impl Debug for Name[src]

impl Default for Name[src]

impl Eq for Name[src]

impl<'_> From<&'_ [u8]> for Name[src]

impl<'_> From<&'_ str> for Name[src]

impl From<String> for Name[src]

impl From<Vec<u8>> for Name[src]

impl Hash for Name[src]

impl Ord for Name[src]

impl<'_> PartialEq<&'_ [u8]> for Name[src]

impl<'_> PartialEq<&'_ Name> for str[src]

impl<'_> PartialEq<&'_ Name> for [u8][src]

impl<'_> PartialEq<&'_ str> for Name[src]

impl PartialEq<[u8]> for Name[src]

impl PartialEq<Name> for Name[src]

impl PartialEq<Name> for str[src]

impl PartialEq<Name> for [u8][src]

impl PartialEq<str> for Name[src]

impl PartialOrd<Name> for Name[src]

impl StructuralEq for Name[src]

impl StructuralPartialEq for Name[src]

Auto Trait Implementations

impl RefUnwindSafe for Name

impl Send for Name

impl Sync for Name

impl Unpin for Name

impl UnwindSafe for Name

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<T> From<T> 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, 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.