pub struct SandboxSession {
pub job_id: Uuid,
pub agent_id: Uuid,
pub token: String,
pub started_at: DateTime<Utc>,
pub expires_at: DateTime<Utc>,
pub container_id: Option<String>,
}Fields§
§job_id: Uuid§agent_id: Uuid§token: String§started_at: DateTime<Utc>§expires_at: DateTime<Utc>§container_id: Option<String>Trait Implementations§
Source§impl Clone for SandboxSession
impl Clone for SandboxSession
Source§fn clone(&self) -> SandboxSession
fn clone(&self) -> SandboxSession
Returns a duplicate of the value. Read more
1.0.0 · 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 SandboxSession
impl Debug for SandboxSession
Source§impl<'de> Deserialize<'de> for SandboxSession
impl<'de> Deserialize<'de> for SandboxSession
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 SandboxSession
impl RefUnwindSafe for SandboxSession
impl Send for SandboxSession
impl Sync for SandboxSession
impl Unpin for SandboxSession
impl UnsafeUnpin for SandboxSession
impl UnwindSafe for SandboxSession
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