pub struct Languages(/* private fields */);Expand description
The collection of languages.
The standard get method will return only the visible languages. If you want to access all languages known to Launchpad, use the getAllLanguages method.
Implementations§
Source§impl Languages
impl Languages
Sourcepub fn iter<'a>(
&'a self,
client: &'a dyn Client,
) -> Result<PagedCollection<'a, LanguagePage>, Error>
pub fn iter<'a>( &'a self, client: &'a dyn Client, ) -> Result<PagedCollection<'a, LanguagePage>, Error>
Get a paged collection of LanguagePage.
pub fn get_wadl<'a>(&self, client: &'a dyn Client) -> Result<Resource, Error>
Sourcepub fn get_all_languages<'a>(
&self,
client: &'a dyn Client,
) -> Result<PagedCollection<'a, LanguagePage>, Error>
pub fn get_all_languages<'a>( &self, client: &'a dyn Client, ) -> Result<PagedCollection<'a, LanguagePage>, Error>
Return a result set of all ILanguages from Launchpad.
§Arguments
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Languages
impl RefUnwindSafe for Languages
impl Send for Languages
impl Sync for Languages
impl Unpin for Languages
impl UnwindSafe for Languages
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