pub struct PropertyHeader {
pub key: URID,
pub context: Option<URID>,
}
Expand description
Information about a property atom.
Fields§
§key: URID
The key of the property.
context: Option<URID>
URID of the context (generally None
).
Trait Implementations§
Source§impl Clone for PropertyHeader
impl Clone for PropertyHeader
Source§fn clone(&self) -> PropertyHeader
fn clone(&self) -> PropertyHeader
Returns a duplicate 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 moreimpl Copy for PropertyHeader
Auto Trait Implementations§
impl Freeze for PropertyHeader
impl RefUnwindSafe for PropertyHeader
impl Send for PropertyHeader
impl Sync for PropertyHeader
impl Unpin for PropertyHeader
impl UnwindSafe for PropertyHeader
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