Skip to main content

Value

Enum Value 

Source
pub enum Value<'a, Spec: Specification = Raw> {
    SingleLine {
        inner: Option<Cow<'a, str>>,
        _spec: PhantomData<Spec>,
    },
    MultiLine {
        inner: Vec<Option<Cow<'a, str>>>,
        _spec: PhantomData<Spec>,
    },
}
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

A single line value.

§Example

let object = parse_object("
name:           ACME Company

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

Fields

§inner: Option<Cow<'a, str>>

The value.

§_spec: PhantomData<Spec>

The values specification.

§

MultiLine

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"].into();
assert_eq!(object[0].value, value);

Fields

§inner: Vec<Option<Cow<'a, str>>>

The value.

§_spec: PhantomData<Spec>

The values specification.

Implementations§

Source§

impl<'a, Spec: Specification> Value<'a, Spec>

Source

pub fn lines(&self) -> usize

The number of lines contained.

§Examples

A value with a single line.

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

A value with multiple lines.

let value: Value = vec!["Packet Street 6", "128 Series of Tubes", "Internet"].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."]);
Source

pub fn is_empty(&self) -> bool

Returns true if the value is empty.

§Example
let remarks = parse_object("
remarks:

")?;
assert_eq!(remarks[0].value.is_empty(), true);
Source

pub fn into_owned(self) -> Value<'static, Spec>

Convert this value into an owned ('static) version.

Source§

impl Value<'static, Raw>

Source

pub fn new_single<V>(value: V) -> Self
where V: Into<String>,

Create a single line value. Empty values are coerced to None.

Source

pub fn new_multi<I, V>(values: I) -> Self
where I: IntoIterator<Item = V>, V: Into<String>,

Create a multi line value. Empty values are coerced to None.

§Panics

If the given iterator contains less than two values.

Trait Implementations§

Source§

impl<'a, Spec: Clone + Specification> Clone for Value<'a, Spec>

Source§

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

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, Spec: Debug + Specification> Debug for Value<'a, Spec>

Source§

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

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

impl From<&str> for Value<'static, Raw>

Source§

fn from(value: &str) -> Self

Converts to this type from the input type.
Source§

impl From<String> for Value<'static, Raw>

Source§

fn from(value: String) -> Self

Converts to this type from the input type.
Source§

impl<'a, Spec: Specification> From<Value<'a, Spec>> for Vec<Option<String>>

Source§

fn from(value: Value<'a, Spec>) -> Self

Converts to this type from the input type.
Source§

impl<S> From<Vec<S>> for Value<'static, Raw>
where S: Into<String>,

Source§

fn from(values: Vec<S>) -> Self

Create a new value from an iterator of value lines.

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

impl FromStr for Value<'static, Raw>

Source§

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

Create a new single line value from a string slice.

Source§

type Err = Infallible

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

impl<Spec: Specification> PartialEq<&str> for Value<'_, Spec>

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<Spec: Specification> PartialEq<Vec<&str>> for Value<'_, Spec>

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<Spec: Specification> PartialEq<Vec<Option<&str>>> for Value<'_, Spec>

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, Spec: PartialEq + Specification> PartialEq for Value<'a, Spec>

Source§

fn eq(&self, other: &Value<'a, Spec>) -> 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, Spec: Specification> Serialize for Value<'a, Spec>

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<'a, Spec: Eq + Specification> Eq for Value<'a, Spec>

Source§

impl<'a, Spec: Specification> StructuralPartialEq for Value<'a, Spec>

Auto Trait Implementations§

§

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

§

impl<'a, Spec> RefUnwindSafe for Value<'a, Spec>
where Spec: RefUnwindSafe,

§

impl<'a, Spec> Send for Value<'a, Spec>
where Spec: Send,

§

impl<'a, Spec> Sync for Value<'a, Spec>
where Spec: Sync,

§

impl<'a, Spec> Unpin for Value<'a, Spec>
where Spec: Unpin,

§

impl<'a, Spec> UnwindSafe for Value<'a, Spec>
where Spec: UnwindSafe,

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.