pub struct Builders(/* private fields */);Expand description
Collections of builders.
IBuilderSet provides access to all Builders in the system, and also acts as a Factory to allow the creation of new Builders. Methods on this interface should deal with the set of Builders: methods that affect a single Builder should be on IBuilder.
Implementations§
Source§impl Builders
impl Builders
Sourcepub fn iter<'a>(
&'a self,
client: &'a dyn Client,
) -> Result<PagedCollection<'a, BuilderPage>, Error>
pub fn iter<'a>( &'a self, client: &'a dyn Client, ) -> Result<PagedCollection<'a, BuilderPage>, Error>
Get a paged collection of BuilderPage.
pub fn get_wadl<'a>(&self, client: &'a dyn Client) -> Result<Resource, Error>
Sourcepub fn get_by_name<'a>(
&self,
client: &'a dyn Client,
name: &str,
) -> Result<BuilderFull, Error>
pub fn get_by_name<'a>( &self, client: &'a dyn Client, name: &str, ) -> Result<BuilderFull, Error>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Builders
impl RefUnwindSafe for Builders
impl Send for Builders
impl Sync for Builders
impl Unpin for Builders
impl UnwindSafe for Builders
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