pub struct LogsResponseLinks {
pub prev: Option<String>,
pub next: Option<String>,
}
Fields§
§prev: Option<String>
The link to the previous page in the results. If this value is None
there is no previous page.
next: Option<String>
The link to the next page in the results. If this value is None
there
is no next page.
Trait Implementations§
Source§impl Debug for LogsResponseLinks
impl Debug for LogsResponseLinks
Source§impl<'de> Deserialize<'de> for LogsResponseLinks
impl<'de> Deserialize<'de> for LogsResponseLinks
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LogsResponseLinks
impl RefUnwindSafe for LogsResponseLinks
impl Send for LogsResponseLinks
impl Sync for LogsResponseLinks
impl Unpin for LogsResponseLinks
impl UnwindSafe for LogsResponseLinks
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