pub struct JsonLdBlock {
pub raw: String,
pub valid_json: bool,
pub types: Vec<String>,
}Fields§
§raw: String§valid_json: bool§types: Vec<String>Trait Implementations§
Source§impl Clone for JsonLdBlock
impl Clone for JsonLdBlock
Source§fn clone(&self) -> JsonLdBlock
fn clone(&self) -> JsonLdBlock
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JsonLdBlock
impl Debug for JsonLdBlock
Source§impl<'de> Deserialize<'de> for JsonLdBlock
impl<'de> Deserialize<'de> for JsonLdBlock
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 JsonLdBlock
impl PartialEq for JsonLdBlock
Source§fn eq(&self, other: &JsonLdBlock) -> bool
fn eq(&self, other: &JsonLdBlock) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for JsonLdBlock
impl Serialize for JsonLdBlock
impl StructuralPartialEq for JsonLdBlock
Auto Trait Implementations§
impl Freeze for JsonLdBlock
impl RefUnwindSafe for JsonLdBlock
impl Send for JsonLdBlock
impl Sync for JsonLdBlock
impl Unpin for JsonLdBlock
impl UnsafeUnpin for JsonLdBlock
impl UnwindSafe for JsonLdBlock
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