[−][src]Enum json_ld::object::Object
Object descriptor.
Variants
Value(Value<T>)Value object.
Node(Node<T>)Node object.
List object.
Methods
impl<T: Id> Object<T>[src]
pub fn id(&self) -> Option<&Lenient<Reference<T>>>[src]
pub fn is_value(&self) -> bool[src]
pub fn is_node(&self) -> bool[src]
pub fn is_graph(&self) -> bool[src]
pub fn is_list(&self) -> bool[src]
pub fn as_str(&self) -> Option<&str>[src]
pub fn as_iri(&self) -> Option<Iri>[src]
pub fn into_unnamed_graph(
self: Indexed<Self>
) -> Result<HashSet<Indexed<Object<T>>>, Indexed<Self>>[src]
self: Indexed<Self>
) -> Result<HashSet<Indexed<Object<T>>>, Indexed<Self>>
Try to convert this object into an unnamed graph.
Trait Implementations
impl<T: Id> AsJson for Object<T>[src]
impl<T: Id> Debug for Object<T>[src]
impl<T: Eq + Id> Eq for Object<T>[src]
impl<T: Id> From<Node<T>> for Object<T>[src]
impl<T: Id> From<Value<T>> for Object<T>[src]
impl<T: Hash + Id> Hash for Object<T>[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl<T: PartialEq + Id> PartialEq<Object<T>> for Object<T>[src]
impl<T: Id> StructuralEq for Object<T>[src]
impl<T: Id> StructuralPartialEq for Object<T>[src]
impl<T: Id> TryFrom<Object<T>> for Node<T>[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for Object<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Object<T> where
T: Send,
T: Send,
impl<T> Sync for Object<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Object<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Object<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T[src]
type Owned = T
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,