Struct sheets::types::BaselineValueFormat
source · pub struct BaselineValueFormat {
pub comparison_type: Option<ComparisonType>,
pub description: String,
pub negative_color: Option<Color>,
pub negative_color_style: Option<ColorStyle>,
pub position: Option<TextPosition>,
pub positive_color: Option<Color>,
pub positive_color_style: Option<ColorStyle>,
pub text_format: Option<TextFormat>,
}
Expand description
Formatting options for baseline value.
Fields
comparison_type: Option<ComparisonType>
Formatting options for baseline value.
description: String
Formatting options for baseline value.
negative_color: Option<Color>
Formatting options for baseline value.
negative_color_style: Option<ColorStyle>
Formatting options for baseline value.
position: Option<TextPosition>
Formatting options for baseline value.
positive_color: Option<Color>
Formatting options for baseline value.
positive_color_style: Option<ColorStyle>
Formatting options for baseline value.
text_format: Option<TextFormat>
Formatting options for baseline value.
Trait Implementations
sourceimpl Clone for BaselineValueFormat
impl Clone for BaselineValueFormat
sourcefn clone(&self) -> BaselineValueFormat
fn clone(&self) -> BaselineValueFormat
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for BaselineValueFormat
impl Debug for BaselineValueFormat
sourceimpl<'de> Deserialize<'de> for BaselineValueFormat
impl<'de> Deserialize<'de> for BaselineValueFormat
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl JsonSchema for BaselineValueFormat
impl JsonSchema for BaselineValueFormat
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresourceimpl PartialEq<BaselineValueFormat> for BaselineValueFormat
impl PartialEq<BaselineValueFormat> for BaselineValueFormat
sourcefn eq(&self, other: &BaselineValueFormat) -> bool
fn eq(&self, other: &BaselineValueFormat) -> bool
sourceimpl Serialize for BaselineValueFormat
impl Serialize for BaselineValueFormat
impl StructuralPartialEq for BaselineValueFormat
Auto Trait Implementations
impl RefUnwindSafe for BaselineValueFormat
impl Send for BaselineValueFormat
impl Sync for BaselineValueFormat
impl Unpin for BaselineValueFormat
impl UnwindSafe for BaselineValueFormat
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more