pub struct DevelopersBuilder { /* private fields */ }
Expand description
Builder for Developers
.
Implementations§
Source§impl DevelopersBuilder
impl DevelopersBuilder
Sourcepub fn orderby<VALUE: Into<DevelopersSorting>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn orderby<VALUE: Into<DevelopersSorting>>( &mut self, value: VALUE, ) -> &mut Self
Sorting options for results.
Sourcepub fn build(&self) -> Result<Developers, DevelopersBuilderError>
pub fn build(&self) -> Result<Developers, DevelopersBuilderError>
Trait Implementations§
Source§impl Clone for DevelopersBuilder
impl Clone for DevelopersBuilder
Source§fn clone(&self) -> DevelopersBuilder
fn clone(&self) -> DevelopersBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for DevelopersBuilder
impl RefUnwindSafe for DevelopersBuilder
impl Send for DevelopersBuilder
impl Sync for DevelopersBuilder
impl Unpin for DevelopersBuilder
impl UnwindSafe for DevelopersBuilder
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