pub struct BackForwardCacheNotRestoredExplanationTreeBuilder { /* private fields */ }Expand description
Builder for BackForwardCacheNotRestoredExplanationTree.
Implementations§
Source§impl BackForwardCacheNotRestoredExplanationTreeBuilder
impl BackForwardCacheNotRestoredExplanationTreeBuilder
Sourcepub fn explanations<VALUE: Into<Vec<BackForwardCacheNotRestoredExplanation>>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn explanations<VALUE: Into<Vec<BackForwardCacheNotRestoredExplanation>>>( &mut self, value: VALUE, ) -> &mut Self
Not restored reasons of each frame
Sourcepub fn children<VALUE: Into<Vec<BackForwardCacheNotRestoredExplanationTree>>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn children<VALUE: Into<Vec<BackForwardCacheNotRestoredExplanationTree>>>( &mut self, value: VALUE, ) -> &mut Self
Array of children frame
Sourcepub fn build(
&self,
) -> Result<BackForwardCacheNotRestoredExplanationTree, BackForwardCacheNotRestoredExplanationTreeBuilderError>
pub fn build( &self, ) -> Result<BackForwardCacheNotRestoredExplanationTree, BackForwardCacheNotRestoredExplanationTreeBuilderError>
Builds a new BackForwardCacheNotRestoredExplanationTree.
§Errors
If a required field has not been initialized.
Trait Implementations§
Source§impl Clone for BackForwardCacheNotRestoredExplanationTreeBuilder
impl Clone for BackForwardCacheNotRestoredExplanationTreeBuilder
Source§fn clone(&self) -> BackForwardCacheNotRestoredExplanationTreeBuilder
fn clone(&self) -> BackForwardCacheNotRestoredExplanationTreeBuilder
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 moreAuto Trait Implementations§
impl Freeze for BackForwardCacheNotRestoredExplanationTreeBuilder
impl RefUnwindSafe for BackForwardCacheNotRestoredExplanationTreeBuilder
impl Send for BackForwardCacheNotRestoredExplanationTreeBuilder
impl Sync for BackForwardCacheNotRestoredExplanationTreeBuilder
impl Unpin for BackForwardCacheNotRestoredExplanationTreeBuilder
impl UnsafeUnpin for BackForwardCacheNotRestoredExplanationTreeBuilder
impl UnwindSafe for BackForwardCacheNotRestoredExplanationTreeBuilder
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