pub struct GetOriginTrials {
pub method: GetOriginTrialsMethod,
pub params: GetOriginTrialsParams,
}Expand description
Get Origin Trials on given frame. getOriginTrials
Fields§
§method: GetOriginTrialsMethod§params: GetOriginTrialsParamsImplementations§
Source§impl GetOriginTrials
impl GetOriginTrials
pub fn builder() -> GetOriginTrialsBuilder
Source§impl GetOriginTrials
impl GetOriginTrials
pub const IDENTIFIER: &'static str = "Page.getOriginTrials"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetOriginTrials
impl Clone for GetOriginTrials
Source§fn clone(&self) -> GetOriginTrials
fn clone(&self) -> GetOriginTrials
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 GetOriginTrials
impl CommandResult for GetOriginTrials
type Result = GetOriginTrialsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetOriginTrials
impl Debug for GetOriginTrials
Source§impl<'de> Deserialize<'de> for GetOriginTrials
impl<'de> Deserialize<'de> for GetOriginTrials
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<GetOriginTrials> for BrowserProtocolCommands
impl From<GetOriginTrials> for BrowserProtocolCommands
Source§fn from(v: GetOriginTrials) -> Self
fn from(v: GetOriginTrials) -> Self
Converts to this type from the input type.
Source§impl From<GetOriginTrials> for Command
impl From<GetOriginTrials> for Command
Source§fn from(v: GetOriginTrials) -> Self
fn from(v: GetOriginTrials) -> Self
Converts to this type from the input type.
Source§impl From<GetOriginTrials> for PageCommands
impl From<GetOriginTrials> for PageCommands
Source§fn from(v: GetOriginTrials) -> Self
fn from(v: GetOriginTrials) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetOriginTrials
impl PartialEq for GetOriginTrials
Source§impl Serialize for GetOriginTrials
impl Serialize for GetOriginTrials
Source§impl TryFrom<BrowserProtocolCommands> for GetOriginTrials
impl TryFrom<BrowserProtocolCommands> for GetOriginTrials
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, <GetOriginTrials as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetOriginTrials as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetOriginTrials
impl TryFrom<Command> for GetOriginTrials
Source§impl TryFrom<PageCommands> for GetOriginTrials
impl TryFrom<PageCommands> for GetOriginTrials
Source§type Error = PageCommands
type Error = PageCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: PageCommands,
) -> Result<Self, <GetOriginTrials as TryFrom<PageCommands>>::Error>
fn try_from( e: PageCommands, ) -> Result<Self, <GetOriginTrials as TryFrom<PageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetOriginTrials
Auto Trait Implementations§
impl Freeze for GetOriginTrials
impl RefUnwindSafe for GetOriginTrials
impl Send for GetOriginTrials
impl Sync for GetOriginTrials
impl Unpin for GetOriginTrials
impl UnsafeUnpin for GetOriginTrials
impl UnwindSafe for GetOriginTrials
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