pub struct BackForwardCacheNotRestoredExplanationTree<'a> { /* private fields */ }Implementations§
Source§impl<'a> BackForwardCacheNotRestoredExplanationTree<'a>
impl<'a> BackForwardCacheNotRestoredExplanationTree<'a>
Sourcepub fn builder(
url: impl Into<Cow<'a, str>>,
explanations: Vec<BackForwardCacheNotRestoredExplanation<'a>>,
children: Vec<Box<BackForwardCacheNotRestoredExplanationTree<'a>>>,
) -> BackForwardCacheNotRestoredExplanationTreeBuilder<'a>
pub fn builder( url: impl Into<Cow<'a, str>>, explanations: Vec<BackForwardCacheNotRestoredExplanation<'a>>, children: Vec<Box<BackForwardCacheNotRestoredExplanationTree<'a>>>, ) -> BackForwardCacheNotRestoredExplanationTreeBuilder<'a>
Creates a builder for this type with the required parameters:
url: URL of each frameexplanations: Not restored reasons of each framechildren: Array of children frame
Sourcepub fn explanations(&self) -> &[BackForwardCacheNotRestoredExplanation<'a>]
pub fn explanations(&self) -> &[BackForwardCacheNotRestoredExplanation<'a>]
Not restored reasons of each frame
Sourcepub fn children(&self) -> &[Box<BackForwardCacheNotRestoredExplanationTree<'a>>]
pub fn children(&self) -> &[Box<BackForwardCacheNotRestoredExplanationTree<'a>>]
Array of children frame
Trait Implementations§
Source§impl<'a> Clone for BackForwardCacheNotRestoredExplanationTree<'a>
impl<'a> Clone for BackForwardCacheNotRestoredExplanationTree<'a>
Source§fn clone(&self) -> BackForwardCacheNotRestoredExplanationTree<'a>
fn clone(&self) -> BackForwardCacheNotRestoredExplanationTree<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for BackForwardCacheNotRestoredExplanationTree<'a>
impl<'a> Debug for BackForwardCacheNotRestoredExplanationTree<'a>
Source§impl<'a> Default for BackForwardCacheNotRestoredExplanationTree<'a>
impl<'a> Default for BackForwardCacheNotRestoredExplanationTree<'a>
Source§fn default() -> BackForwardCacheNotRestoredExplanationTree<'a>
fn default() -> BackForwardCacheNotRestoredExplanationTree<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for BackForwardCacheNotRestoredExplanationTree<'a>
impl<'de, 'a> Deserialize<'de> for BackForwardCacheNotRestoredExplanationTree<'a>
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
Auto Trait Implementations§
impl<'a> Freeze for BackForwardCacheNotRestoredExplanationTree<'a>
impl<'a> RefUnwindSafe for BackForwardCacheNotRestoredExplanationTree<'a>
impl<'a> Send for BackForwardCacheNotRestoredExplanationTree<'a>
impl<'a> Sync for BackForwardCacheNotRestoredExplanationTree<'a>
impl<'a> Unpin for BackForwardCacheNotRestoredExplanationTree<'a>
impl<'a> UnsafeUnpin for BackForwardCacheNotRestoredExplanationTree<'a>
impl<'a> UnwindSafe for BackForwardCacheNotRestoredExplanationTree<'a>
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