pub struct GetAppIdReturnObjectBuilder { /* private fields */ }Expand description
Builder for GetAppIdReturnObject.
Implementations§
Source§impl GetAppIdReturnObjectBuilder
impl GetAppIdReturnObjectBuilder
Sourcepub fn app_id(&mut self, value: Option<String>) -> &mut Self
pub fn app_id(&mut self, value: Option<String>) -> &mut Self
App id, either from manifest’s id attribute or computed from start_url
Sourcepub fn recommended_id(&mut self, value: Option<String>) -> &mut Self
pub fn recommended_id(&mut self, value: Option<String>) -> &mut Self
Recommendation for manifest’s id attribute to match current id computed from start_url
Sourcepub fn build(
&self,
) -> Result<GetAppIdReturnObject, GetAppIdReturnObjectBuilderError>
pub fn build( &self, ) -> Result<GetAppIdReturnObject, GetAppIdReturnObjectBuilderError>
Trait Implementations§
Source§impl Clone for GetAppIdReturnObjectBuilder
impl Clone for GetAppIdReturnObjectBuilder
Source§fn clone(&self) -> GetAppIdReturnObjectBuilder
fn clone(&self) -> GetAppIdReturnObjectBuilder
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 GetAppIdReturnObjectBuilder
impl RefUnwindSafe for GetAppIdReturnObjectBuilder
impl Send for GetAppIdReturnObjectBuilder
impl Sync for GetAppIdReturnObjectBuilder
impl Unpin for GetAppIdReturnObjectBuilder
impl UnsafeUnpin for GetAppIdReturnObjectBuilder
impl UnwindSafe for GetAppIdReturnObjectBuilder
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