Struct spreadsheet_ods::style::GraphicStyle[][src]

pub struct GraphicStyle { /* fields omitted */ }

Styles of this type can occur in an odt file. This is only used as a place to put this stuff when reading the ods.

Implementations

impl GraphicStyle[src]

pub fn empty() -> Self[src]

pub fn new<S: Into<String>, T: Into<String>>(name: S) -> Self[src]

pub fn style_ref(&self) -> GraphicStyleRef[src]

pub fn origin(&self) -> StyleOrigin[src]

pub fn set_origin(&mut self, origin: StyleOrigin)[src]

pub fn styleuse(&self) -> StyleUse[src]

pub fn set_styleuse(&mut self, styleuse: StyleUse)[src]

pub fn name(&self) -> &str[src]

pub fn set_name<S: Into<String>>(&mut self, name: S)[src]

pub fn attrmap(&self) -> &AttrMap2[src]

pub fn attrmap_mut(&mut self) -> &mut AttrMap2[src]

pub fn graphicstyle(&self) -> &AttrMap2[src]

pub fn graphicstyle_mut(&mut self) -> &mut AttrMap2[src]

Trait Implementations

impl Clone for GraphicStyle[src]

impl Debug for GraphicStyle[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.