pub struct WindowDefinition {
pub name: String,
pub spec: WindowSpec,
}Expand description
Named WINDOW definition: window_name AS (window_spec)
Fields§
§name: String§spec: WindowSpecTrait Implementations§
Source§impl Clone for WindowDefinition
impl Clone for WindowDefinition
Source§fn clone(&self) -> WindowDefinition
fn clone(&self) -> WindowDefinition
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 WindowDefinition
impl Debug for WindowDefinition
Source§impl<'de> Deserialize<'de> for WindowDefinition
impl<'de> Deserialize<'de> for WindowDefinition
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 PartialEq for WindowDefinition
impl PartialEq for WindowDefinition
Source§impl Serialize for WindowDefinition
impl Serialize for WindowDefinition
impl StructuralPartialEq for WindowDefinition
Auto Trait Implementations§
impl Freeze for WindowDefinition
impl RefUnwindSafe for WindowDefinition
impl Send for WindowDefinition
impl Sync for WindowDefinition
impl Unpin for WindowDefinition
impl UnsafeUnpin for WindowDefinition
impl UnwindSafe for WindowDefinition
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