pub struct ReleaseObjectGroup {
pub method: ReleaseObjectGroupMethod,
pub params: ReleaseObjectGroupParams,
}Expand description
Releases all remote objects that belong to a given group. releaseObjectGroup
Fields§
§method: ReleaseObjectGroupMethod§params: ReleaseObjectGroupParamsImplementations§
Source§impl ReleaseObjectGroup
impl ReleaseObjectGroup
pub fn builder() -> ReleaseObjectGroupBuilder
Source§impl ReleaseObjectGroup
impl ReleaseObjectGroup
pub const IDENTIFIER: &'static str = "Runtime.releaseObjectGroup"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ReleaseObjectGroup
impl Clone for ReleaseObjectGroup
Source§fn clone(&self) -> ReleaseObjectGroup
fn clone(&self) -> ReleaseObjectGroup
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 ReleaseObjectGroup
impl CommandResult for ReleaseObjectGroup
type Result = ReleaseObjectGroupResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ReleaseObjectGroup
impl Debug for ReleaseObjectGroup
Source§impl<'de> Deserialize<'de> for ReleaseObjectGroup
impl<'de> Deserialize<'de> for ReleaseObjectGroup
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<ReleaseObjectGroup> for Command
impl From<ReleaseObjectGroup> for Command
Source§fn from(v: ReleaseObjectGroup) -> Self
fn from(v: ReleaseObjectGroup) -> Self
Converts to this type from the input type.
Source§impl From<ReleaseObjectGroup> for JsProtocolCommands
impl From<ReleaseObjectGroup> for JsProtocolCommands
Source§fn from(v: ReleaseObjectGroup) -> Self
fn from(v: ReleaseObjectGroup) -> Self
Converts to this type from the input type.
Source§impl From<ReleaseObjectGroup> for RuntimeCommands
impl From<ReleaseObjectGroup> for RuntimeCommands
Source§fn from(v: ReleaseObjectGroup) -> Self
fn from(v: ReleaseObjectGroup) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReleaseObjectGroup
impl PartialEq for ReleaseObjectGroup
Source§impl Serialize for ReleaseObjectGroup
impl Serialize for ReleaseObjectGroup
Source§impl TryFrom<Command> for ReleaseObjectGroup
impl TryFrom<Command> for ReleaseObjectGroup
Source§impl TryFrom<JsProtocolCommands> for ReleaseObjectGroup
impl TryFrom<JsProtocolCommands> for ReleaseObjectGroup
Source§type Error = JsProtocolCommands
type Error = JsProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolCommands,
) -> Result<Self, <ReleaseObjectGroup as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <ReleaseObjectGroup as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<RuntimeCommands> for ReleaseObjectGroup
impl TryFrom<RuntimeCommands> for ReleaseObjectGroup
Source§type Error = RuntimeCommands
type Error = RuntimeCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: RuntimeCommands,
) -> Result<Self, <ReleaseObjectGroup as TryFrom<RuntimeCommands>>::Error>
fn try_from( e: RuntimeCommands, ) -> Result<Self, <ReleaseObjectGroup as TryFrom<RuntimeCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ReleaseObjectGroup
Auto Trait Implementations§
impl Freeze for ReleaseObjectGroup
impl RefUnwindSafe for ReleaseObjectGroup
impl Send for ReleaseObjectGroup
impl Sync for ReleaseObjectGroup
impl Unpin for ReleaseObjectGroup
impl UnsafeUnpin for ReleaseObjectGroup
impl UnwindSafe for ReleaseObjectGroup
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