Skip to main content

ArcValue

Struct ArcValue 

Source
pub struct ArcValue { /* private fields */ }

Implementations§

Source§

impl ArcValue

Source

pub fn category(&self) -> ValueCategory

Category of this value

Source

pub fn has_value(&self) -> bool

Whether this ArcValue currently holds an inner value

Source

pub fn type_name(&self) -> Option<&str>

Best-effort type name for the contained value (if present)

Source

pub fn null() -> Self

Source

pub fn is_null(&self) -> bool

Source

pub fn new_primitive<T>(value: T) -> Self
where T: 'static + Clone + Debug + Send + Sync + Serialize + DeserializeOwned,

Source

pub fn new_list<T>(list: Vec<T>) -> Self
where T: 'static + Clone + Debug + Send + Sync + Serialize + DeserializeOwned,

Source

pub fn new_map<T>(map: HashMap<String, T>) -> Self
where T: 'static + Clone + Debug + Send + Sync + Serialize + DeserializeOwned,

Source

pub fn new_struct<T>(value: T) -> Self
where T: 'static + Clone + Debug + Send + Sync + Serialize + DeserializeOwned + RunarEncrypt,

Source

pub fn new_bytes(bytes: Vec<u8>) -> Self

Source

pub fn new_json(json: JsonValue) -> Self

Source

pub fn deserialize( bytes: &[u8], keystore: Option<Arc<KeyStore>>, ) -> Result<Self>

Source

pub fn serialize( &self, context: Option<&SerializationContext>, ) -> Result<Vec<u8>>

Serialize using consolidated SerializationContext

Source

pub fn as_type<T>(&self) -> Result<T>
where T: 'static + Clone + Debug + Send + Sync + Serialize + DeserializeOwned,

Source

pub fn as_type_ref<T>(&self) -> Result<Arc<T>>
where T: 'static + Clone + Debug + Send + Sync + Serialize + DeserializeOwned,

Source

pub fn as_typed_list_ref<T>(&self) -> Result<Vec<Arc<T>>>
where T: 'static + Clone + Debug + Send + Sync + Serialize + DeserializeOwned,

Source

pub fn as_list_ref(&self) -> Result<Arc<Vec<ArcValue>>>

Source

pub fn as_typed_map_ref<T>(&self) -> Result<HashMap<String, Arc<T>>>
where T: 'static + Clone + Debug + Send + Sync + Serialize + DeserializeOwned,

Source

pub fn as_map_ref(&self) -> Result<Arc<HashMap<String, ArcValue>>>

Source

pub fn as_struct_ref<T>(&self) -> Result<Arc<T>>
where T: 'static + Clone + Debug + Send + Sync + Serialize + DeserializeOwned,

Source

pub fn as_bytes_ref(&self) -> Result<Arc<Vec<u8>>>

Source

pub fn as_json_ref(&self) -> Result<Arc<JsonValue>>

Source

pub fn to_json(&self) -> Result<JsonValue>

Source

pub fn serialize_serde<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Source

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

Trait Implementations§

Source§

impl AsArcValue for ArcValue

Source§

fn into_arc_value(self) -> ArcValue

Convert self into an ArcValue.
Source§

fn from_arc_value(value: ArcValue) -> Result<Self>

Attempt to reconstruct Self from the provided ArcValue.
Source§

impl Clone for ArcValue

Source§

fn clone(&self) -> ArcValue

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 Debug for ArcValue

Source§

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

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

impl Default for ArcValue

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for ArcValue

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 PartialEq for ArcValue

Source§

fn eq(&self, other: &Self) -> 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 Serialize for ArcValue

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 Eq for ArcValue

Auto Trait Implementations§

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<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

Source§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

Source§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

Source§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

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<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> Same for T

Source§

type Output = T

Should always be Self
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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

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