pub struct ObjectHeader {
pub id: Option<URID>,
pub otype: URID,
}Expand description
Information about an object atom.
Fields§
§id: Option<URID>The id of the object to distinguish different objects of the same type.
If you don’t need it, you should set it to None.
otype: URIDThe type of the object (same as rdf:type).
Auto Trait Implementations§
impl Freeze for ObjectHeader
impl RefUnwindSafe for ObjectHeader
impl Send for ObjectHeader
impl Sync for ObjectHeader
impl Unpin for ObjectHeader
impl UnwindSafe for ObjectHeader
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