pub enum MarkProperties {
Named(Name),
Inline(Box<Dict>),
}Expand description
The property list a BDC operator carries: a name into /Properties, or
an inline dictionary.
Variants§
Named(Name)
BDC /Tag /Name — resolved through the /Properties resource.
Inline(Box<Dict>)
BDC /Tag << … >> — the dictionary is written out inline.
Trait Implementations§
Source§impl Clone for MarkProperties
impl Clone for MarkProperties
Source§fn clone(&self) -> MarkProperties
fn clone(&self) -> MarkProperties
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 MarkProperties
impl Debug for MarkProperties
Source§impl PartialEq for MarkProperties
impl PartialEq for MarkProperties
impl StructuralPartialEq for MarkProperties
Auto Trait Implementations§
impl Freeze for MarkProperties
impl RefUnwindSafe for MarkProperties
impl Send for MarkProperties
impl Sync for MarkProperties
impl Unpin for MarkProperties
impl UnsafeUnpin for MarkProperties
impl UnwindSafe for MarkProperties
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