pub struct AnvilInstance {
pub job_id: u64,
pub name: String,
pub port: u16,
pub fork_url: Option<String>,
pub status: AnvilInstanceStatus,
pub logs: Vec<LogLine>,
}Fields§
§job_id: u64§name: String§port: u16§fork_url: Option<String>§status: AnvilInstanceStatus§logs: Vec<LogLine>Trait Implementations§
Source§impl Clone for AnvilInstance
impl Clone for AnvilInstance
Source§fn clone(&self) -> AnvilInstance
fn clone(&self) -> AnvilInstance
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 moreAuto Trait Implementations§
impl Freeze for AnvilInstance
impl RefUnwindSafe for AnvilInstance
impl Send for AnvilInstance
impl Sync for AnvilInstance
impl Unpin for AnvilInstance
impl UnsafeUnpin for AnvilInstance
impl UnwindSafe for AnvilInstance
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