pub enum LinkColumnFormat {}
Expand description
LinkColumnFormat
JSON schema
{
"description": "Format of a link column.",
"allOf": [
{
"$ref": "#/components/schemas/SimpleColumnFormat"
},
{
"type": "object",
"properties": {
"display": {
"$ref": "#/components/schemas/LinkDisplayType"
},
"force": {
"description": "Force embeds to render on the client instead of
the server (for sites that require user login).",
"examples": [
true
],
"type": "boolean"
}
},
"additionalProperties": false
}
],
"x-schema-name": "LinkColumnFormat"
}
Trait Implementations§
Source§impl Clone for LinkColumnFormat
impl Clone for LinkColumnFormat
Source§fn clone(&self) -> LinkColumnFormat
fn clone(&self) -> LinkColumnFormat
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 LinkColumnFormat
impl Debug for LinkColumnFormat
Source§impl<'de> Deserialize<'de> for LinkColumnFormat
impl<'de> Deserialize<'de> for LinkColumnFormat
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<&LinkColumnFormat> for LinkColumnFormat
impl From<&LinkColumnFormat> for LinkColumnFormat
Source§fn from(value: &LinkColumnFormat) -> Self
fn from(value: &LinkColumnFormat) -> Self
Converts to this type from the input type.
Source§impl From<LinkColumnFormat> for ColumnFormat
impl From<LinkColumnFormat> for ColumnFormat
Source§fn from(value: LinkColumnFormat) -> Self
fn from(value: LinkColumnFormat) -> Self
Converts to this type from the input type.
Source§impl Hash for LinkColumnFormat
impl Hash for LinkColumnFormat
Source§impl Ord for LinkColumnFormat
impl Ord for LinkColumnFormat
Source§fn cmp(&self, other: &LinkColumnFormat) -> Ordering
fn cmp(&self, other: &LinkColumnFormat) -> 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 PartialEq for LinkColumnFormat
impl PartialEq for LinkColumnFormat
Source§impl PartialOrd for LinkColumnFormat
impl PartialOrd for LinkColumnFormat
Source§impl Serialize for LinkColumnFormat
impl Serialize for LinkColumnFormat
impl Copy for LinkColumnFormat
impl Eq for LinkColumnFormat
impl StructuralPartialEq for LinkColumnFormat
Auto Trait Implementations§
impl Freeze for LinkColumnFormat
impl RefUnwindSafe for LinkColumnFormat
impl Send for LinkColumnFormat
impl Sync for LinkColumnFormat
impl Unpin for LinkColumnFormat
impl UnwindSafe for LinkColumnFormat
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