pub struct ServiceWorkerErrorMessageBuilder { /* private fields */ }
Implementations§
Source§impl ServiceWorkerErrorMessageBuilder
impl ServiceWorkerErrorMessageBuilder
pub fn error_message( self, error_message: impl Into<String>, ) -> ServiceWorkerErrorMessageBuilder
pub fn registration_id( self, registration_id: impl Into<RegistrationId>, ) -> ServiceWorkerErrorMessageBuilder
pub fn version_id( self, version_id: impl Into<String>, ) -> ServiceWorkerErrorMessageBuilder
pub fn source_url( self, source_url: impl Into<String>, ) -> ServiceWorkerErrorMessageBuilder
pub fn line_number( self, line_number: impl Into<i64>, ) -> ServiceWorkerErrorMessageBuilder
pub fn column_number( self, column_number: impl Into<i64>, ) -> ServiceWorkerErrorMessageBuilder
pub fn build(self) -> Result<ServiceWorkerErrorMessage, String>
Trait Implementations§
Source§impl Clone for ServiceWorkerErrorMessageBuilder
impl Clone for ServiceWorkerErrorMessageBuilder
Source§fn clone(&self) -> ServiceWorkerErrorMessageBuilder
fn clone(&self) -> ServiceWorkerErrorMessageBuilder
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 Default for ServiceWorkerErrorMessageBuilder
impl Default for ServiceWorkerErrorMessageBuilder
Source§fn default() -> ServiceWorkerErrorMessageBuilder
fn default() -> ServiceWorkerErrorMessageBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ServiceWorkerErrorMessageBuilder
impl RefUnwindSafe for ServiceWorkerErrorMessageBuilder
impl Send for ServiceWorkerErrorMessageBuilder
impl Sync for ServiceWorkerErrorMessageBuilder
impl Unpin for ServiceWorkerErrorMessageBuilder
impl UnwindSafe for ServiceWorkerErrorMessageBuilder
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