pub struct GetAppManifestReturnObjectBuilder { /* private fields */ }Expand description
Builder for GetAppManifestReturnObject.
Implementations§
Source§impl GetAppManifestReturnObjectBuilder
impl GetAppManifestReturnObjectBuilder
pub fn errors(&mut self, value: Vec<AppManifestError>) -> &mut Self
Sourcepub fn parsed(
&mut self,
value: Option<AppManifestParsedProperties>,
) -> &mut Self
pub fn parsed( &mut self, value: Option<AppManifestParsedProperties>, ) -> &mut Self
Parsed manifest properties. Deprecated, use manifest instead.
pub fn manifest(&mut self, value: WebAppManifest) -> &mut Self
Sourcepub fn build(
&self,
) -> Result<GetAppManifestReturnObject, GetAppManifestReturnObjectBuilderError>
pub fn build( &self, ) -> Result<GetAppManifestReturnObject, GetAppManifestReturnObjectBuilderError>
Trait Implementations§
Source§impl Clone for GetAppManifestReturnObjectBuilder
impl Clone for GetAppManifestReturnObjectBuilder
Source§fn clone(&self) -> GetAppManifestReturnObjectBuilder
fn clone(&self) -> GetAppManifestReturnObjectBuilder
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 GetAppManifestReturnObjectBuilder
impl RefUnwindSafe for GetAppManifestReturnObjectBuilder
impl Send for GetAppManifestReturnObjectBuilder
impl Sync for GetAppManifestReturnObjectBuilder
impl Unpin for GetAppManifestReturnObjectBuilder
impl UnsafeUnpin for GetAppManifestReturnObjectBuilder
impl UnwindSafe for GetAppManifestReturnObjectBuilder
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