Enum git_config::values::Value[][src]

pub enum Value<'a> {
    Boolean(Boolean<'a>),
    Integer(Integer),
    Color(Color),
    Other(Cow<'a, [u8]>),
}

Fully enumerated valid types that a git-config value can be.

Variants

Boolean(Boolean<'a>)
Integer(Integer)
Color(Color)
Other(Cow<'a, [u8]>)

If a value does not match from any of the other variants, then this variant will be matched. As a result, conversion from a str-like item will never fail.

Implementations

impl Value<'_>[src]

#[must_use]pub fn to_vec(&self) -> Vec<u8>[src]

Generates a byte representation of the value. This should be used when non-UTF-8 sequences are present or a UTF-8 representation can’t be guaranteed.

Trait Implementations

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

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

impl Display for Value<'_>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Note that this is a best-effort attempt at printing a Value. If there are non UTF-8 values in your config, this will NOT render as read.

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

impl<'a> From<&'a [u8]> for Value<'a>[src]

impl<'a> From<&'a str> for Value<'a>[src]

impl<'a> From<Cow<'a, [u8]>> for Value<'a>[src]

impl From<String> for Value<'_>[src]

impl From<Vec<u8, Global>> for Value<'_>[src]

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

impl Into<Vec<u8, Global>> for Value<'_>[src]

impl Into<Vec<u8, Global>> for &Value<'_>[src]

impl<'a> Ord for Value<'a>[src]

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

impl<'a> PartialOrd<Value<'a>> for Value<'a>[src]

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Value<'a>

impl<'a> Send for Value<'a>

impl<'a> Sync for Value<'a>

impl<'a> Unpin for Value<'a>

impl<'a> UnwindSafe for Value<'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<T> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

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

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

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

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> TryConv for T

impl<T> TryConv for T

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.