pub enum ImageReferenceColumnFormat {}
Expand description
ImageReferenceColumnFormat
JSON schema
{
"description": "Format of an image reference column.",
"allOf": [
{
"$ref": "#/components/schemas/SimpleColumnFormat"
},
{
"type": "object",
"required": [
"height",
"style",
"width"
],
"properties": {
"height": {
"allOf": [
{
"description": "The image height.",
"additionalProperties": false
},
{
"$ref": "#/components/schemas/NumberOrNumberFormula"
}
]
},
"style": {
"$ref": "#/components/schemas/ImageShapeStyle"
},
"width": {
"allOf": [
{
"description": "The image width.",
"additionalProperties": false
},
{
"$ref": "#/components/schemas/NumberOrNumberFormula"
}
]
}
},
"additionalProperties": false
}
],
"x-schema-name": "ImageReferenceColumnFormat"
}
Trait Implementations§
Source§impl Clone for ImageReferenceColumnFormat
impl Clone for ImageReferenceColumnFormat
Source§fn clone(&self) -> ImageReferenceColumnFormat
fn clone(&self) -> ImageReferenceColumnFormat
Returns a duplicate of the value. Read more
1.0.0 · 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 ImageReferenceColumnFormat
impl Debug for ImageReferenceColumnFormat
Source§impl<'de> Deserialize<'de> for ImageReferenceColumnFormat
impl<'de> Deserialize<'de> for ImageReferenceColumnFormat
Source§fn 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
Source§impl From<&ImageReferenceColumnFormat> for ImageReferenceColumnFormat
impl From<&ImageReferenceColumnFormat> for ImageReferenceColumnFormat
Source§fn from(value: &ImageReferenceColumnFormat) -> Self
fn from(value: &ImageReferenceColumnFormat) -> Self
Converts to this type from the input type.
Source§impl From<ImageReferenceColumnFormat> for ColumnFormat
impl From<ImageReferenceColumnFormat> for ColumnFormat
Source§fn from(value: ImageReferenceColumnFormat) -> Self
fn from(value: ImageReferenceColumnFormat) -> Self
Converts to this type from the input type.
Source§impl Hash for ImageReferenceColumnFormat
impl Hash for ImageReferenceColumnFormat
Source§impl Ord for ImageReferenceColumnFormat
impl Ord for ImageReferenceColumnFormat
Source§fn cmp(&self, other: &ImageReferenceColumnFormat) -> Ordering
fn cmp(&self, other: &ImageReferenceColumnFormat) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for ImageReferenceColumnFormat
impl PartialOrd for ImageReferenceColumnFormat
impl Copy for ImageReferenceColumnFormat
impl Eq for ImageReferenceColumnFormat
impl StructuralPartialEq for ImageReferenceColumnFormat
Auto Trait Implementations§
impl Freeze for ImageReferenceColumnFormat
impl RefUnwindSafe for ImageReferenceColumnFormat
impl Send for ImageReferenceColumnFormat
impl Sync for ImageReferenceColumnFormat
impl Unpin for ImageReferenceColumnFormat
impl UnwindSafe for ImageReferenceColumnFormat
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