Struct marked_yaml::Spanned

source ·
pub struct Spanned<T> { /* private fields */ }
Available on crate feature serde only.
Expand description

Wrapper which can be used when deserialising data from Node

You must use a compatible deserializer if you want to deserialize these values.

use marked_yaml::{from_yaml, Spanned};
use serde::Deserialize;

#[derive(Deserialize)]
struct MyStuff {
    num: Spanned<u32>,
}
let stuff: MyStuff = from_yaml(0, "num: 12").unwrap();

You can also serialize these values, however when serializing you will lose the span information so do not expect to round-trip these values.

Implementations§

source§

impl<T> Spanned<T>

source

pub fn new(span: Span, inner: T) -> Self

Wrap an instance of something with the given span

let spanned = Spanned::new(Span::new_blank(), "Hello World");
source

pub fn span(&self) -> &Span

The span associated with this value

let spanned = Spanned::new(span, "Hello World");
assert_eq!(spanned.span(), &span);

Trait Implementations§

source§

impl Borrow<str> for Spanned<&str>

source§

fn borrow(&self) -> &str

Immutably borrows from an owned value. Read more
source§

impl Borrow<str> for Spanned<String>

source§

fn borrow(&self) -> &str

Immutably borrows from an owned value. Read more
source§

impl<T: Debug> Debug for Spanned<T>

source§

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

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

impl<T> Deref for Spanned<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<'de, T> Deserialize<'de> for Spanned<T>
where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T> Hash for Spanned<T>
where T: Hash,

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<&str> for Spanned<String>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> PartialEq<T> for Spanned<T>
where T: PartialEq,

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> PartialEq for Spanned<T>
where T: PartialEq,

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> Serialize for Spanned<T>
where T: Serialize,

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<T> Eq for Spanned<T>
where T: Eq,

Auto Trait Implementations§

§

impl<T> Freeze for Spanned<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Spanned<T>
where T: RefUnwindSafe,

§

impl<T> Send for Spanned<T>
where T: Send,

§

impl<T> Sync for Spanned<T>
where T: Sync,

§

impl<T> Unpin for Spanned<T>
where T: Unpin,

§

impl<T> UnwindSafe for Spanned<T>
where T: 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<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. 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, U> TryFrom<U> for T
where U: Into<T>,

§

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

§

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

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,