[][src]Struct sval::value::OwnedValue

pub struct OwnedValue(_);

An owned, immutable value.

Owned values are safe to share and are cheap to clone.

Add the std feature to your Cargo.toml to enable this type:

[dependencies.sval]
features = ["std"]

Methods

impl OwnedValue[src]

pub fn collect(v: impl Value) -> Self[src]

Get an owned value from an arbitrary Value.

The given value doesn't need to be Send + Sync + 'static.

The structure of the given value will be streamed into a shared datastructure. That means this method is more expensive for more complex values.

Prefer the from_shared method where possible.

pub fn from_shared(v: impl Into<Arc<dyn Value + Send + Sync>>) -> Self[src]

Get an owned value from an already shared Value.

The given value must be Send + Sync + 'static.

Trait Implementations

impl Value for OwnedValue[src]

impl Debug for OwnedValue[src]

impl Clone for OwnedValue[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for OwnedValue

impl Sync for OwnedValue

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.