pub struct WindowBase {
pub table: String,
pub variable: String,
pub fixed_scopes: Vec<(String, Vec<String>)>,
pub params: Option<String>,
}Expand description
§4.8 window base: one table, the scope variable whose values are the
window units, any fixed scopes shared by every unit, and host-opaque
params carried onto each unit’s subscription.
Fields§
§table: String§variable: String§fixed_scopes: Vec<(String, Vec<String>)>Scopes shared by every unit (other variables), if any.
params: Option<String>Trait Implementations§
Source§impl Clone for WindowBase
impl Clone for WindowBase
Source§fn clone(&self) -> WindowBase
fn clone(&self) -> WindowBase
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for WindowBase
impl RefUnwindSafe for WindowBase
impl Send for WindowBase
impl Sync for WindowBase
impl Unpin for WindowBase
impl UnsafeUnpin for WindowBase
impl UnwindSafe for WindowBase
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