pub struct Mark {
pub tag: Name,
pub properties: Option<Arc<Dict>>,
pub from_resources: bool,
}Expand description
One marked-content entry.
Fields§
§tag: NameThe tag naming the role, e.g. /Span or /OC.
properties: Option<Arc<Dict>>The property list, when the operator carried one that resolved.
from_resources: boolWhether the properties came from the /Properties resource rather
than being written inline — which is what optional-content visibility
requires.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Mark
Auto Trait Implementations§
impl Freeze for Mark
impl RefUnwindSafe for Mark
impl Send for Mark
impl Sync for Mark
impl Unpin for Mark
impl UnsafeUnpin for Mark
impl UnwindSafe for Mark
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