pub struct ResolveBlob {
pub method: ResolveBlobMethod,
pub params: ResolveBlobParams,
}Expand description
Return UUID of Blob object specified by a remote object id. resolveBlob
Fields§
§method: ResolveBlobMethod§params: ResolveBlobParamsImplementations§
Source§impl ResolveBlob
impl ResolveBlob
pub fn builder() -> ResolveBlobBuilder
Source§impl ResolveBlob
impl ResolveBlob
pub const IDENTIFIER: &'static str = "IO.resolveBlob"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ResolveBlob
impl Clone for ResolveBlob
Source§fn clone(&self) -> ResolveBlob
fn clone(&self) -> ResolveBlob
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 ResolveBlob
impl CommandResult for ResolveBlob
type Result = ResolveBlobResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ResolveBlob
impl Debug for ResolveBlob
Source§impl<'de> Deserialize<'de> for ResolveBlob
impl<'de> Deserialize<'de> for ResolveBlob
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<ResolveBlob> for BrowserProtocolCommands
impl From<ResolveBlob> for BrowserProtocolCommands
Source§fn from(v: ResolveBlob) -> Self
fn from(v: ResolveBlob) -> Self
Converts to this type from the input type.
Source§impl From<ResolveBlob> for Command
impl From<ResolveBlob> for Command
Source§fn from(v: ResolveBlob) -> Self
fn from(v: ResolveBlob) -> Self
Converts to this type from the input type.
Source§impl From<ResolveBlob> for IoCommands
impl From<ResolveBlob> for IoCommands
Source§fn from(v: ResolveBlob) -> Self
fn from(v: ResolveBlob) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ResolveBlob
impl PartialEq for ResolveBlob
Source§impl Serialize for ResolveBlob
impl Serialize for ResolveBlob
Source§impl TryFrom<BrowserProtocolCommands> for ResolveBlob
impl TryFrom<BrowserProtocolCommands> for ResolveBlob
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, <ResolveBlob as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ResolveBlob as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ResolveBlob
impl TryFrom<Command> for ResolveBlob
Source§impl TryFrom<IoCommands> for ResolveBlob
impl TryFrom<IoCommands> for ResolveBlob
Source§type Error = IoCommands
type Error = IoCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: IoCommands,
) -> Result<Self, <ResolveBlob as TryFrom<IoCommands>>::Error>
fn try_from( e: IoCommands, ) -> Result<Self, <ResolveBlob as TryFrom<IoCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ResolveBlob
Auto Trait Implementations§
impl Freeze for ResolveBlob
impl RefUnwindSafe for ResolveBlob
impl Send for ResolveBlob
impl Sync for ResolveBlob
impl Unpin for ResolveBlob
impl UnsafeUnpin for ResolveBlob
impl UnwindSafe for ResolveBlob
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