pub struct PreloadPipelineId(/* private fields */);
Expand description
Chrome manages different types of preloads together using a concept of preloading pipeline. For example, if a site uses a SpeculationRules for prerender, Chrome first starts a prefetch and then upgrades it to prerender.
CDP events for them are emitted separately but they share
PreloadPipelineId
.
PreloadPipelineId
Implementations§
Source§impl PreloadPipelineId
impl PreloadPipelineId
pub const IDENTIFIER: &'static str = "Preload.PreloadPipelineId"
Trait Implementations§
Source§impl AsRef<str> for PreloadPipelineId
impl AsRef<str> for PreloadPipelineId
Source§impl Borrow<str> for PreloadPipelineId
impl Borrow<str> for PreloadPipelineId
Source§impl Clone for PreloadPipelineId
impl Clone for PreloadPipelineId
Source§fn clone(&self) -> PreloadPipelineId
fn clone(&self) -> PreloadPipelineId
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 Debug for PreloadPipelineId
impl Debug for PreloadPipelineId
Source§impl Default for PreloadPipelineId
impl Default for PreloadPipelineId
Source§fn default() -> PreloadPipelineId
fn default() -> PreloadPipelineId
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PreloadPipelineId
impl<'de> Deserialize<'de> for PreloadPipelineId
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PreloadPipelineId, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PreloadPipelineId, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<PreloadPipelineId> for String
impl From<PreloadPipelineId> for String
Source§fn from(el: PreloadPipelineId) -> String
fn from(el: PreloadPipelineId) -> String
Converts to this type from the input type.
Source§impl From<String> for PreloadPipelineId
impl From<String> for PreloadPipelineId
Source§fn from(expr: String) -> PreloadPipelineId
fn from(expr: String) -> PreloadPipelineId
Converts to this type from the input type.
Source§impl Hash for PreloadPipelineId
impl Hash for PreloadPipelineId
Source§impl PartialEq for PreloadPipelineId
impl PartialEq for PreloadPipelineId
Source§impl Serialize for PreloadPipelineId
impl Serialize for PreloadPipelineId
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for PreloadPipelineId
impl StructuralPartialEq for PreloadPipelineId
Auto Trait Implementations§
impl Freeze for PreloadPipelineId
impl RefUnwindSafe for PreloadPipelineId
impl Send for PreloadPipelineId
impl Sync for PreloadPipelineId
impl Unpin for PreloadPipelineId
impl UnwindSafe for PreloadPipelineId
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.