pub struct CT_EffectList {
pub outer_shadow: Option<CT_OuterShadowEffect>,
/* private fields */
}Expand description
DrawingML a:effectLst with an outer shadow and preserved other effects.
Fields§
§outer_shadow: Option<CT_OuterShadowEffect>Implementations§
Source§impl CT_EffectList
impl CT_EffectList
Sourcepub fn from_xml(xml: &[u8]) -> Result<Self>
pub fn from_xml(xml: &[u8]) -> Result<Self>
Parses one complete a:effectLst with any namespace prefix.
Sourcepub fn to_xml(&self) -> Result<Vec<u8>>
pub fn to_xml(&self) -> Result<Vec<u8>>
Writes this list with a fixed root prefix and the shadow in schema order.
Sourcepub fn write_xml<W: Write>(&self, writer: &mut Writer<W>) -> Result<()>
pub fn write_xml<W: Write>(&self, writer: &mut Writer<W>) -> Result<()>
Writes this effect list into an existing XML writer.
pub fn raw_children(&self) -> &OrderedRawChildren
Sourcepub fn has_unmodelled_placeholder_color(&self) -> bool
pub fn has_unmodelled_placeholder_color(&self) -> bool
Reports an unresolved placeholder colour inside an opaque effect child.
Trait Implementations§
Source§impl Clone for CT_EffectList
impl Clone for CT_EffectList
Source§fn clone(&self) -> CT_EffectList
fn clone(&self) -> CT_EffectList
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 CT_EffectList
impl Debug for CT_EffectList
Source§impl Default for CT_EffectList
impl Default for CT_EffectList
Source§fn default() -> CT_EffectList
fn default() -> CT_EffectList
Returns the “default value” for a type. Read more
impl Eq for CT_EffectList
Source§impl PartialEq for CT_EffectList
impl PartialEq for CT_EffectList
impl StructuralPartialEq for CT_EffectList
Auto Trait Implementations§
impl Freeze for CT_EffectList
impl RefUnwindSafe for CT_EffectList
impl Send for CT_EffectList
impl Sync for CT_EffectList
impl Unpin for CT_EffectList
impl UnsafeUnpin for CT_EffectList
impl UnwindSafe for CT_EffectList
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