pub struct SerialWindowFrame {
pub type_: SerialWindowFrameType,
pub start: SerialWindowFrameBound,
pub end: Option<SerialWindowFrameBound>,
pub exclude: Option<SerialWindowFrameExclude>,
}Fields§
§type_: SerialWindowFrameType§start: SerialWindowFrameBound§end: Option<SerialWindowFrameBound>§exclude: Option<SerialWindowFrameExclude>Trait Implementations§
Source§impl Clone for SerialWindowFrame
impl Clone for SerialWindowFrame
Source§fn clone(&self) -> SerialWindowFrame
fn clone(&self) -> SerialWindowFrame
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 SerialWindowFrame
impl Debug for SerialWindowFrame
Source§impl<'de> Deserialize<'de> for SerialWindowFrame
impl<'de> Deserialize<'de> for SerialWindowFrame
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SerialWindowFrame, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SerialWindowFrame, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<SerialWindowFrame> for WindowFrame
impl From<SerialWindowFrame> for WindowFrame
Source§fn from(s: SerialWindowFrame) -> WindowFrame
fn from(s: SerialWindowFrame) -> WindowFrame
Converts to this type from the input type.
Source§impl Serialize for SerialWindowFrame
impl Serialize for SerialWindowFrame
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for SerialWindowFrame
impl RefUnwindSafe for SerialWindowFrame
impl Send for SerialWindowFrame
impl Sync for SerialWindowFrame
impl Unpin for SerialWindowFrame
impl UnsafeUnpin for SerialWindowFrame
impl UnwindSafe for SerialWindowFrame
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