pub struct ReleaseSnapshotParams {
pub snapshot_id: SnapshotId,
}Expand description
Releases layer snapshot captured by the back-end. releaseSnapshot
Fields§
§snapshot_id: SnapshotIdThe id of the layer snapshot.
Implementations§
source§impl ReleaseSnapshotParams
impl ReleaseSnapshotParams
pub fn new(snapshot_id: impl Into<SnapshotId>) -> ReleaseSnapshotParams
source§impl ReleaseSnapshotParams
impl ReleaseSnapshotParams
pub fn builder() -> ReleaseSnapshotParamsBuilder
source§impl ReleaseSnapshotParams
impl ReleaseSnapshotParams
pub const IDENTIFIER: &'static str = "LayerTree.releaseSnapshot"
Trait Implementations§
source§impl Clone for ReleaseSnapshotParams
impl Clone for ReleaseSnapshotParams
source§fn clone(&self) -> ReleaseSnapshotParams
fn clone(&self) -> ReleaseSnapshotParams
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 Command for ReleaseSnapshotParams
impl Command for ReleaseSnapshotParams
§type Response = ReleaseSnapshotReturns
type Response = ReleaseSnapshotReturns
The type of the response this request triggers on the chromium server
source§impl Debug for ReleaseSnapshotParams
impl Debug for ReleaseSnapshotParams
source§impl<'de> Deserialize<'de> for ReleaseSnapshotParams
impl<'de> Deserialize<'de> for ReleaseSnapshotParams
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<ReleaseSnapshotParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<ReleaseSnapshotParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for ReleaseSnapshotParams
impl Method for ReleaseSnapshotParams
source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNodesource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMsource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodesource§impl MethodType for ReleaseSnapshotParams
impl MethodType for ReleaseSnapshotParams
source§impl PartialEq<ReleaseSnapshotParams> for ReleaseSnapshotParams
impl PartialEq<ReleaseSnapshotParams> for ReleaseSnapshotParams
source§fn eq(&self, other: &ReleaseSnapshotParams) -> bool
fn eq(&self, other: &ReleaseSnapshotParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ReleaseSnapshotParams
impl Serialize for ReleaseSnapshotParams
source§fn 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