Struct chromiumoxide::cdp::browser_protocol::layer_tree::MakeSnapshotParams
source · [−]pub struct MakeSnapshotParams {
pub layer_id: LayerId,
}Expand description
Returns the layer snapshot identifier. makeSnapshot
Fields
layer_id: LayerIdThe id of the layer.
Implementations
sourceimpl MakeSnapshotParams
impl MakeSnapshotParams
pub fn new(layer_id: impl Into<LayerId>) -> MakeSnapshotParams
sourceimpl MakeSnapshotParams
impl MakeSnapshotParams
pub fn builder() -> MakeSnapshotParamsBuilder
sourceimpl MakeSnapshotParams
impl MakeSnapshotParams
pub const IDENTIFIER: &'static str = "LayerTree.makeSnapshot"
Trait Implementations
sourceimpl Clone for MakeSnapshotParams
impl Clone for MakeSnapshotParams
sourcefn clone(&self) -> MakeSnapshotParams
fn clone(&self) -> MakeSnapshotParams
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Command for MakeSnapshotParams
impl Command for MakeSnapshotParams
type Response = MakeSnapshotReturns
type Response = MakeSnapshotReturns
The type of the response this request triggers on the chromium server
sourceimpl Debug for MakeSnapshotParams
impl Debug for MakeSnapshotParams
sourceimpl<'de> Deserialize<'de> for MakeSnapshotParams
impl<'de> Deserialize<'de> for MakeSnapshotParams
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<MakeSnapshotParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<MakeSnapshotParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Method for MakeSnapshotParams
impl Method for MakeSnapshotParams
sourcefn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNodesourcefn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMsourcefn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodesourceimpl MethodType for MakeSnapshotParams
impl MethodType for MakeSnapshotParams
sourceimpl PartialEq<MakeSnapshotParams> for MakeSnapshotParams
impl PartialEq<MakeSnapshotParams> for MakeSnapshotParams
sourcefn eq(&self, other: &MakeSnapshotParams) -> bool
fn eq(&self, other: &MakeSnapshotParams) -> bool
sourceimpl Serialize for MakeSnapshotParams
impl Serialize for MakeSnapshotParams
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for MakeSnapshotParams
Auto Trait Implementations
impl RefUnwindSafe for MakeSnapshotParams
impl Send for MakeSnapshotParams
impl Sync for MakeSnapshotParams
impl Unpin for MakeSnapshotParams
impl UnwindSafe for MakeSnapshotParams
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more