pub struct AssertableInertia {
pub component: String,
pub props: Map<String, Value>,
pub url: String,
pub version: Option<String>,
pub clear_history: bool,
pub encrypt_history: bool,
pub deferred_props: DeserializedDeferredProps,
pub merge_props: Option<Vec<String>>,
}
Fields§
§component: String
§props: Map<String, Value>
§url: String
§version: Option<String>
§clear_history: bool
§encrypt_history: bool
§deferred_props: DeserializedDeferredProps
§merge_props: Option<Vec<String>>
Implementations§
Source§impl AssertableInertia
impl AssertableInertia
pub fn get_component(&self) -> &str
pub fn get_props(&self) -> &Map<String, Value>
pub fn get_url(&self) -> &str
pub fn get_version(&self) -> Option<&String>
pub fn get_clear_history(&self) -> bool
pub fn get_encrypt_history(&self) -> bool
pub fn get_deferred_props(&self) -> Option<&HashMap<String, Vec<String>>>
pub fn get_merge_props(&self) -> Option<&Vec<String>>
Trait Implementations§
Source§impl Clone for AssertableInertia
impl Clone for AssertableInertia
Source§fn clone(&self) -> AssertableInertia
fn clone(&self) -> AssertableInertia
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AssertableInertia
impl Debug for AssertableInertia
Source§impl<'de> Deserialize<'de> for AssertableInertia
impl<'de> Deserialize<'de> for AssertableInertia
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 AssertableInertia
impl PartialEq for AssertableInertia
impl StructuralPartialEq for AssertableInertia
Auto Trait Implementations§
impl Freeze for AssertableInertia
impl RefUnwindSafe for AssertableInertia
impl Send for AssertableInertia
impl Sync for AssertableInertia
impl Unpin for AssertableInertia
impl UnwindSafe for AssertableInertia
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more