pub struct LayerShellOptions {
pub namespace: String,
pub layer: Layer,
pub anchor: Anchor,
pub exclusive_zone: Option<Pixels>,
pub exclusive_edge: Option<Anchor>,
pub margin: Option<(Pixels, Pixels, Pixels, Pixels)>,
pub keyboard_interactivity: KeyboardInteractivity,
}Expand description
Options for creating a layer_shell window.
Fields§
§namespace: StringThe namespace for the surface, mostly used by compositors to apply rules, can not be changed after the surface is created.
layer: LayerThe layer the surface is rendered on.
anchor: AnchorThe anchor point of the surface.
exclusive_zone: Option<Pixels>Requests that the compositor avoids occluding an area with other surfaces.
exclusive_edge: Option<Anchor>The anchor point of the exclusive zone, will be determined using the anchor if left unspecified.
margin: Option<(Pixels, Pixels, Pixels, Pixels)>Margins between the surface and its anchor point(s). Specified in CSS order: top, right, bottom, left.
keyboard_interactivity: KeyboardInteractivityHow keyboard events should be delivered to the surface.
Trait Implementations§
Source§impl Clone for LayerShellOptions
impl Clone for LayerShellOptions
Source§fn clone(&self) -> LayerShellOptions
fn clone(&self) -> LayerShellOptions
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 moreSource§impl Debug for LayerShellOptions
impl Debug for LayerShellOptions
Source§impl Default for LayerShellOptions
impl Default for LayerShellOptions
Source§fn default() -> LayerShellOptions
fn default() -> LayerShellOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for LayerShellOptions
impl PartialEq for LayerShellOptions
Source§fn eq(&self, other: &LayerShellOptions) -> bool
fn eq(&self, other: &LayerShellOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LayerShellOptions
impl StructuralPartialEq for LayerShellOptions
Auto Trait Implementations§
impl Freeze for LayerShellOptions
impl RefUnwindSafe for LayerShellOptions
impl Send for LayerShellOptions
impl Sync for LayerShellOptions
impl Unpin for LayerShellOptions
impl UnsafeUnpin for LayerShellOptions
impl UnwindSafe for LayerShellOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().