pub struct EventMarkingsStrongAccent {
pub pointing: Option<UpOrDown>,
}Expand description
EventMarkingsStrongAccent
JSON schema
{
"type": "object",
"properties": {
"pointing": {
"$ref": "#/$defs/up-or-down"
}
},
"additionalProperties": false
}Fields§
§pointing: Option<UpOrDown>Implementations§
Source§impl EventMarkingsStrongAccent
impl EventMarkingsStrongAccent
pub fn builder() -> EventMarkingsStrongAccent
Trait Implementations§
Source§impl Clone for EventMarkingsStrongAccent
impl Clone for EventMarkingsStrongAccent
Source§fn clone(&self) -> EventMarkingsStrongAccent
fn clone(&self) -> EventMarkingsStrongAccent
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 EventMarkingsStrongAccent
impl Debug for EventMarkingsStrongAccent
Source§impl Default for EventMarkingsStrongAccent
impl Default for EventMarkingsStrongAccent
Source§impl<'de> Deserialize<'de> for EventMarkingsStrongAccent
impl<'de> Deserialize<'de> for EventMarkingsStrongAccent
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<&EventMarkingsStrongAccent> for EventMarkingsStrongAccent
impl From<&EventMarkingsStrongAccent> for EventMarkingsStrongAccent
Source§fn from(value: &EventMarkingsStrongAccent) -> Self
fn from(value: &EventMarkingsStrongAccent) -> Self
Converts to this type from the input type.
Source§impl From<EventMarkingsStrongAccent> for EventMarkingsStrongAccent
impl From<EventMarkingsStrongAccent> for EventMarkingsStrongAccent
Source§fn from(value: EventMarkingsStrongAccent) -> Self
fn from(value: EventMarkingsStrongAccent) -> Self
Converts to this type from the input type.
Source§impl TryFrom<EventMarkingsStrongAccent> for EventMarkingsStrongAccent
impl TryFrom<EventMarkingsStrongAccent> for EventMarkingsStrongAccent
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: EventMarkingsStrongAccent) -> Result<Self, ConversionError>
fn try_from(value: EventMarkingsStrongAccent) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for EventMarkingsStrongAccent
impl RefUnwindSafe for EventMarkingsStrongAccent
impl Send for EventMarkingsStrongAccent
impl Sync for EventMarkingsStrongAccent
impl Unpin for EventMarkingsStrongAccent
impl UnwindSafe for EventMarkingsStrongAccent
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