pub struct Entries<'a> { /* private fields */ }Implementations§
Source§impl<'a> Entries<'a>
impl<'a> Entries<'a>
pub async fn get_many<T>(
&self,
content_type: &str,
params: Option<GetManyParams>,
) -> Result<EntriesResponse<T>>where
T: for<'de> Deserialize<'de>,
pub async fn get_one<T>(
&self,
content_type: &str,
uid: &str,
params: Option<GetOneParams>,
) -> Result<EntryResponse<T>>where
T: for<'de> Deserialize<'de>,
Auto Trait Implementations§
impl<'a> Freeze for Entries<'a>
impl<'a> !RefUnwindSafe for Entries<'a>
impl<'a> Send for Entries<'a>
impl<'a> Sync for Entries<'a>
impl<'a> Unpin for Entries<'a>
impl<'a> UnsafeUnpin for Entries<'a>
impl<'a> !UnwindSafe for Entries<'a>
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