pub enum Bar3DShape {
Cone,
ConeToMax,
Box,
Cylinder,
Pyramid,
PyramidToMax,
}Expand description
ST_Shape — the physical shape used for each bar in a 3D bar/column chart (<c:shape> inside
CT_Bar3DChart). The whole <c:shape> element is optional (minOccurs="0", attribute default
"box"), so modeled Option<Bar3DShape> — an absent element is simply omitted by the writer,
never a bare fallback value.
Variants§
Trait Implementations§
Source§impl Clone for Bar3DShape
impl Clone for Bar3DShape
Source§fn clone(&self) -> Bar3DShape
fn clone(&self) -> Bar3DShape
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 moreimpl Copy for Bar3DShape
Source§impl Debug for Bar3DShape
impl Debug for Bar3DShape
impl Eq for Bar3DShape
Source§impl PartialEq for Bar3DShape
impl PartialEq for Bar3DShape
impl StructuralPartialEq for Bar3DShape
Auto Trait Implementations§
impl Freeze for Bar3DShape
impl RefUnwindSafe for Bar3DShape
impl Send for Bar3DShape
impl Sync for Bar3DShape
impl Unpin for Bar3DShape
impl UnsafeUnpin for Bar3DShape
impl UnwindSafe for Bar3DShape
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.