pub struct GitRepositories(/* private fields */);Expand description
Interface representing the set of Git repositories.
Implementations§
Source§impl GitRepositories
impl GitRepositories
Sourcepub fn iter<'a>(
&'a self,
client: &'a dyn Client,
) -> Result<PagedCollection<'a, GitRepositoryPage>, Error>
pub fn iter<'a>( &'a self, client: &'a dyn Client, ) -> Result<PagedCollection<'a, GitRepositoryPage>, Error>
Get a paged collection of GitRepositoryPage.
Sourcepub fn get_wadl<'a>(&self, client: &'a dyn Client) -> Result<Resource, Error>
pub fn get_wadl<'a>(&self, client: &'a dyn Client) -> Result<Resource, Error>
Retrieve the WADL description for this resource.
This method fetches the WADL (Web Application Description Language) specification for the current resource, allowing for runtime API discovery.
§Returns
Returns the wadl::ast::Resource definition on success, or an error if the request fails.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GitRepositories
impl RefUnwindSafe for GitRepositories
impl Send for GitRepositories
impl Sync for GitRepositories
impl Unpin for GitRepositories
impl UnsafeUnpin for GitRepositories
impl UnwindSafe for GitRepositories
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