pub struct InsecureContentStatusBuilder { /* private fields */ }Expand description
Builder for InsecureContentStatus.
Implementations§
Source§impl InsecureContentStatusBuilder
impl InsecureContentStatusBuilder
Sourcepub fn ran_mixed_content<VALUE: Into<bool>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn ran_mixed_content<VALUE: Into<bool>>( &mut self, value: VALUE, ) -> &mut Self
Always false.
Sourcepub fn displayed_mixed_content<VALUE: Into<bool>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn displayed_mixed_content<VALUE: Into<bool>>( &mut self, value: VALUE, ) -> &mut Self
Always false.
Sourcepub fn contained_mixed_form<VALUE: Into<bool>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn contained_mixed_form<VALUE: Into<bool>>( &mut self, value: VALUE, ) -> &mut Self
Always false.
Sourcepub fn ran_content_with_cert_errors<VALUE: Into<bool>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn ran_content_with_cert_errors<VALUE: Into<bool>>( &mut self, value: VALUE, ) -> &mut Self
Always false.
Sourcepub fn displayed_content_with_cert_errors<VALUE: Into<bool>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn displayed_content_with_cert_errors<VALUE: Into<bool>>( &mut self, value: VALUE, ) -> &mut Self
Always false.
Sourcepub fn ran_insecure_content_style<VALUE: Into<SecurityState>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn ran_insecure_content_style<VALUE: Into<SecurityState>>( &mut self, value: VALUE, ) -> &mut Self
Always set to unknown.
Sourcepub fn displayed_insecure_content_style<VALUE: Into<SecurityState>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn displayed_insecure_content_style<VALUE: Into<SecurityState>>( &mut self, value: VALUE, ) -> &mut Self
Always set to unknown.
Sourcepub fn build(
&self,
) -> Result<InsecureContentStatus, InsecureContentStatusBuilderError>
pub fn build( &self, ) -> Result<InsecureContentStatus, InsecureContentStatusBuilderError>
Trait Implementations§
Source§impl Clone for InsecureContentStatusBuilder
impl Clone for InsecureContentStatusBuilder
Source§fn clone(&self) -> InsecureContentStatusBuilder
fn clone(&self) -> InsecureContentStatusBuilder
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 InsecureContentStatusBuilder
impl RefUnwindSafe for InsecureContentStatusBuilder
impl Send for InsecureContentStatusBuilder
impl Sync for InsecureContentStatusBuilder
impl Unpin for InsecureContentStatusBuilder
impl UnsafeUnpin for InsecureContentStatusBuilder
impl UnwindSafe for InsecureContentStatusBuilder
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