Enum Value

Source
pub enum Value<'a> {
    SingleLine(Option<Cow<'a, str>>),
    MultiLine(Vec<Option<Cow<'a, str>>>),
}
Expand description

The value of an Attribute. Since only some values contain multiple lines and single line values do not require additional heap allocation, an Enum is used to represent both variants.

Variants§

§

SingleLine(Option<Cow<'a, str>>)

A single line value.

§Example

let object = parse_object("
name:           ACME Company

")?;
let value: Value = "ACME Company".parse()?;
assert_eq!(object[0].value, value);
§

MultiLine(Vec<Option<Cow<'a, str>>>)

A value spanning over multiple lines.

§Example

let object = parse_object("
remarks:        Packet Street 6
                128 Series of Tubes
                Internet

")?;
let value: Value = vec!["Packet Street 6", "128 Series of Tubes", "Internet"].try_into()?;
assert_eq!(object[0].value, value);

Implementations§

Source§

impl<'a> Value<'a>

Source

pub fn lines(&self) -> usize

The number of lines contained.

§Examples

A value with a single line.

let value: Value = "ACME Company".parse()?;
assert_eq!(value.lines(), 1);

A value with multiple lines.

let value: Value = vec!["Packet Street 6", "128 Series of Tubes", "Internet"].try_into()?;
assert_eq!(value.lines(), 3);
Source

pub fn with_content(&self) -> Vec<&str>

The lines that contain content and are non empty.

§Example
let remarks = parse_object("
remarks:        I have lots
                 
                to say.

")?;
assert_eq!(remarks[0].value.with_content(), vec!["I have lots", "to say."]);

Trait Implementations§

Source§

impl<'a> Clone for Value<'a>

Source§

fn clone(&self) -> Value<'a>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Debug for Value<'a>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl FromStr for Value<'_>

Source§

fn from_str(value: &str) -> Result<Self, Self::Err>

Create a new single line value from a string slice.

A valid value may consist of any ASCII character, excluding control characters.

§Errors

Returns an error if the value contains invalid characters.

Source§

type Err = InvalidValueError

The associated error which can be returned from parsing.
Source§

impl Into<Vec<Option<String>>> for Value<'_>

Source§

fn into(self) -> Vec<Option<String>>

Converts this type into the (usually inferred) input type.
Source§

impl PartialEq<&str> for Value<'_>

Source§

fn eq(&self, other: &&str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<Vec<&str>> for Value<'_>

Source§

fn eq(&self, other: &Vec<&str>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<Vec<Option<&str>>> for Value<'_>

Source§

fn eq(&self, other: &Vec<Option<&str>>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a> PartialEq for Value<'a>

Source§

fn eq(&self, other: &Value<'a>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a> Serialize for Value<'a>

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl TryFrom<Vec<&str>> for Value<'_>

Source§

fn try_from(values: Vec<&str>) -> Result<Self, Self::Error>

Create a new value from a vector of string slices, representing the values lines.

§Errors

Returns an error if a value contains invalid characters.

§Example
let value: Value = vec!["Packet Street 6", "128 Series of Tubes", "Internet"].try_into()?;
assert_eq!(value.lines(), 3);
Source§

type Error = InvalidValueError

The type returned in the event of a conversion error.
Source§

impl<'a> Eq for Value<'a>

Source§

impl<'a> StructuralPartialEq for Value<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for Value<'a>

§

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§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.