pub struct SessionListResponse {
pub sessions: Vec<SessionSummary>,
}Expand description
POST /session/list response body (v1.0.5 §D1).
Fields§
§sessions: Vec<SessionSummary>Every session currently known to the runner.
Trait Implementations§
Source§impl Clone for SessionListResponse
impl Clone for SessionListResponse
Source§fn clone(&self) -> SessionListResponse
fn clone(&self) -> SessionListResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SessionListResponse
impl Debug for SessionListResponse
Source§impl Default for SessionListResponse
impl Default for SessionListResponse
Source§fn default() -> SessionListResponse
fn default() -> SessionListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionListResponse
impl<'de> Deserialize<'de> for SessionListResponse
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 SessionListResponse
impl RefUnwindSafe for SessionListResponse
impl Send for SessionListResponse
impl Sync for SessionListResponse
impl Unpin for SessionListResponse
impl UnsafeUnpin for SessionListResponse
impl UnwindSafe for SessionListResponse
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