[][src]Enum java_properties::LineContent

pub enum LineContent {
    Comment(String),
    KVPair(StringString),
}

Parsed content of the line.

Variants

Comment(String)

Content of a comment line.

KVPair(StringString)

Content of a key/value line.

Trait Implementations

impl Clone for LineContent[src]

impl Debug for LineContent[src]

impl Display for LineContent[src]

impl Eq for LineContent[src]

impl Hash for LineContent[src]

impl Into<LineContent> for Line[src]

impl Ord for LineContent[src]

impl PartialEq<LineContent> for LineContent[src]

impl PartialOrd<LineContent> for LineContent[src]

impl StructuralEq for LineContent[src]

impl StructuralPartialEq for LineContent[src]

Auto Trait Implementations

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> 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.