pub struct FetchSchemefulSite {
pub method: FetchSchemefulSiteMethod,
pub params: FetchSchemefulSiteParams,
}Expand description
Fetches the schemeful site for a specific origin. fetchSchemefulSite
Fields§
§method: FetchSchemefulSiteMethod§params: FetchSchemefulSiteParamsImplementations§
Source§impl FetchSchemefulSite
impl FetchSchemefulSite
pub fn builder() -> FetchSchemefulSiteBuilder
Source§impl FetchSchemefulSite
impl FetchSchemefulSite
pub const IDENTIFIER: &'static str = "Network.fetchSchemefulSite"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for FetchSchemefulSite
impl Clone for FetchSchemefulSite
Source§fn clone(&self) -> FetchSchemefulSite
fn clone(&self) -> FetchSchemefulSite
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 FetchSchemefulSite
impl CommandResult for FetchSchemefulSite
type Result = FetchSchemefulSiteResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for FetchSchemefulSite
impl Debug for FetchSchemefulSite
Source§impl<'de> Deserialize<'de> for FetchSchemefulSite
impl<'de> Deserialize<'de> for FetchSchemefulSite
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<FetchSchemefulSite> for BrowserProtocolCommands
impl From<FetchSchemefulSite> for BrowserProtocolCommands
Source§fn from(v: FetchSchemefulSite) -> Self
fn from(v: FetchSchemefulSite) -> Self
Converts to this type from the input type.
Source§impl From<FetchSchemefulSite> for Command
impl From<FetchSchemefulSite> for Command
Source§fn from(v: FetchSchemefulSite) -> Self
fn from(v: FetchSchemefulSite) -> Self
Converts to this type from the input type.
Source§impl From<FetchSchemefulSite> for NetworkCommands
impl From<FetchSchemefulSite> for NetworkCommands
Source§fn from(v: FetchSchemefulSite) -> Self
fn from(v: FetchSchemefulSite) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FetchSchemefulSite
impl PartialEq for FetchSchemefulSite
Source§impl Serialize for FetchSchemefulSite
impl Serialize for FetchSchemefulSite
Source§impl TryFrom<BrowserProtocolCommands> for FetchSchemefulSite
impl TryFrom<BrowserProtocolCommands> for FetchSchemefulSite
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, <FetchSchemefulSite as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <FetchSchemefulSite as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for FetchSchemefulSite
impl TryFrom<Command> for FetchSchemefulSite
Source§impl TryFrom<NetworkCommands> for FetchSchemefulSite
impl TryFrom<NetworkCommands> for FetchSchemefulSite
Source§type Error = NetworkCommands
type Error = NetworkCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: NetworkCommands,
) -> Result<Self, <FetchSchemefulSite as TryFrom<NetworkCommands>>::Error>
fn try_from( e: NetworkCommands, ) -> Result<Self, <FetchSchemefulSite as TryFrom<NetworkCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for FetchSchemefulSite
Auto Trait Implementations§
impl Freeze for FetchSchemefulSite
impl RefUnwindSafe for FetchSchemefulSite
impl Send for FetchSchemefulSite
impl Sync for FetchSchemefulSite
impl Unpin for FetchSchemefulSite
impl UnsafeUnpin for FetchSchemefulSite
impl UnwindSafe for FetchSchemefulSite
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