Struct zng_view_api::window::HeadlessRequest
source · pub struct HeadlessRequest {
pub id: WindowId,
pub scale_factor: Factor,
pub size: DipSize,
pub render_mode: RenderMode,
pub extensions: Vec<(ApiExtensionId, ApiExtensionPayload)>,
}
Expand description
Configuration of a new headless surface.
Headless surfaces are always capture_mode
enabled.
Fields§
§id: WindowId
ID that will identify the new headless surface.
The surface is identified by a WindowId
so that some API methods
can apply to both windows or surfaces, no actual window is created.
scale_factor: Factor
Scale for the layout units in this config.
size: DipSize
Surface area (viewport size).
render_mode: RenderMode
Render mode preference for this headless surface.
extensions: Vec<(ApiExtensionId, ApiExtensionPayload)>
Initial payload for API extensions.
The zng-view
crate implements this by calling WindowExtension::configure
and RendererExtension::configure
with the payload.
Trait Implementations§
source§impl Clone for HeadlessRequest
impl Clone for HeadlessRequest
source§fn clone(&self) -> HeadlessRequest
fn clone(&self) -> HeadlessRequest
Returns a copy 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 HeadlessRequest
impl Debug for HeadlessRequest
source§impl<'de> Deserialize<'de> for HeadlessRequest
impl<'de> Deserialize<'de> for HeadlessRequest
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
Auto Trait Implementations§
impl Freeze for HeadlessRequest
impl RefUnwindSafe for HeadlessRequest
impl Send for HeadlessRequest
impl Sync for HeadlessRequest
impl Unpin for HeadlessRequest
impl UnwindSafe for HeadlessRequest
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more