pub struct DeveloperBuilder { /* private fields */ }
Expand description
Builder for Developer
.
Implementations§
Source§impl DeveloperBuilder
impl DeveloperBuilder
pub fn id<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn name<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn email<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn url<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn organization<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn organization_url<VALUE: Into<String>>( &mut self, value: VALUE, ) -> &mut Self
pub fn timezone<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
Trait Implementations§
Source§impl Clone for DeveloperBuilder
impl Clone for DeveloperBuilder
Source§fn clone(&self) -> DeveloperBuilder
fn clone(&self) -> DeveloperBuilder
Returns a copy 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 DeveloperBuilder
impl RefUnwindSafe for DeveloperBuilder
impl Send for DeveloperBuilder
impl Sync for DeveloperBuilder
impl Unpin for DeveloperBuilder
impl UnwindSafe for DeveloperBuilder
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