pub struct ReleaseObject {
pub method: ReleaseObjectMethod,
pub params: ReleaseObjectParams,
}Expand description
Releases remote object with given id. releaseObject
Fields§
§method: ReleaseObjectMethod§params: ReleaseObjectParamsImplementations§
Source§impl ReleaseObject
impl ReleaseObject
pub fn builder() -> ReleaseObjectBuilder
Source§impl ReleaseObject
impl ReleaseObject
pub const IDENTIFIER: &'static str = "Runtime.releaseObject"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ReleaseObject
impl Clone for ReleaseObject
Source§fn clone(&self) -> ReleaseObject
fn clone(&self) -> ReleaseObject
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 ReleaseObject
impl CommandResult for ReleaseObject
type Result = ReleaseObjectResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ReleaseObject
impl Debug for ReleaseObject
Source§impl<'de> Deserialize<'de> for ReleaseObject
impl<'de> Deserialize<'de> for ReleaseObject
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<ReleaseObject> for Command
impl From<ReleaseObject> for Command
Source§fn from(v: ReleaseObject) -> Self
fn from(v: ReleaseObject) -> Self
Converts to this type from the input type.
Source§impl From<ReleaseObject> for JsProtocolCommands
impl From<ReleaseObject> for JsProtocolCommands
Source§fn from(v: ReleaseObject) -> Self
fn from(v: ReleaseObject) -> Self
Converts to this type from the input type.
Source§impl From<ReleaseObject> for RuntimeCommands
impl From<ReleaseObject> for RuntimeCommands
Source§fn from(v: ReleaseObject) -> Self
fn from(v: ReleaseObject) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReleaseObject
impl PartialEq for ReleaseObject
Source§impl Serialize for ReleaseObject
impl Serialize for ReleaseObject
Source§impl TryFrom<Command> for ReleaseObject
impl TryFrom<Command> for ReleaseObject
Source§impl TryFrom<JsProtocolCommands> for ReleaseObject
impl TryFrom<JsProtocolCommands> for ReleaseObject
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, <ReleaseObject as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <ReleaseObject as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<RuntimeCommands> for ReleaseObject
impl TryFrom<RuntimeCommands> for ReleaseObject
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, <ReleaseObject as TryFrom<RuntimeCommands>>::Error>
fn try_from( e: RuntimeCommands, ) -> Result<Self, <ReleaseObject as TryFrom<RuntimeCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ReleaseObject
Auto Trait Implementations§
impl Freeze for ReleaseObject
impl RefUnwindSafe for ReleaseObject
impl Send for ReleaseObject
impl Sync for ReleaseObject
impl Unpin for ReleaseObject
impl UnsafeUnpin for ReleaseObject
impl UnwindSafe for ReleaseObject
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