pub struct CompositingReasons {
pub method: CompositingReasonsMethod,
pub params: CompositingReasonsParams,
}Expand description
Provides the reasons why the given layer was composited. compositingReasons
Fields§
§method: CompositingReasonsMethod§params: CompositingReasonsParamsImplementations§
Source§impl CompositingReasons
impl CompositingReasons
pub fn builder() -> CompositingReasonsBuilder
Source§impl CompositingReasons
impl CompositingReasons
pub const IDENTIFIER: &'static str = "LayerTree.compositingReasons"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for CompositingReasons
impl Clone for CompositingReasons
Source§fn clone(&self) -> CompositingReasons
fn clone(&self) -> CompositingReasons
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 CommandResult for CompositingReasons
impl CommandResult for CompositingReasons
type Result = CompositingReasonsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for CompositingReasons
impl Debug for CompositingReasons
Source§impl<'de> Deserialize<'de> for CompositingReasons
impl<'de> Deserialize<'de> for CompositingReasons
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 From<CompositingReasons> for BrowserProtocolCommands
impl From<CompositingReasons> for BrowserProtocolCommands
Source§fn from(v: CompositingReasons) -> Self
fn from(v: CompositingReasons) -> Self
Converts to this type from the input type.
Source§impl From<CompositingReasons> for Command
impl From<CompositingReasons> for Command
Source§fn from(v: CompositingReasons) -> Self
fn from(v: CompositingReasons) -> Self
Converts to this type from the input type.
Source§impl From<CompositingReasons> for LayerTreeCommands
impl From<CompositingReasons> for LayerTreeCommands
Source§fn from(v: CompositingReasons) -> Self
fn from(v: CompositingReasons) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CompositingReasons
impl PartialEq for CompositingReasons
Source§impl Serialize for CompositingReasons
impl Serialize for CompositingReasons
Source§impl TryFrom<BrowserProtocolCommands> for CompositingReasons
impl TryFrom<BrowserProtocolCommands> for CompositingReasons
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <CompositingReasons as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <CompositingReasons as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for CompositingReasons
impl TryFrom<Command> for CompositingReasons
Source§impl TryFrom<LayerTreeCommands> for CompositingReasons
impl TryFrom<LayerTreeCommands> for CompositingReasons
Source§type Error = LayerTreeCommands
type Error = LayerTreeCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: LayerTreeCommands,
) -> Result<Self, <CompositingReasons as TryFrom<LayerTreeCommands>>::Error>
fn try_from( e: LayerTreeCommands, ) -> Result<Self, <CompositingReasons as TryFrom<LayerTreeCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for CompositingReasons
Auto Trait Implementations§
impl Freeze for CompositingReasons
impl RefUnwindSafe for CompositingReasons
impl Send for CompositingReasons
impl Sync for CompositingReasons
impl Unpin for CompositingReasons
impl UnsafeUnpin for CompositingReasons
impl UnwindSafe for CompositingReasons
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