pub struct GetConsoleOutputResult {
pub instance_id: Option<String>,
pub output: Option<String>,
pub timestamp: Option<String>,
}Fields§
§instance_id: Option<String>The ID of the instance.
output: Option<String>The console output, base64-encoded. If you are using a command line tool, the tool decodes the output for you.
timestamp: Option<String>The time at which the output was last updated.
Trait Implementations§
Source§impl Clone for GetConsoleOutputResult
impl Clone for GetConsoleOutputResult
Source§fn clone(&self) -> GetConsoleOutputResult
fn clone(&self) -> GetConsoleOutputResult
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 GetConsoleOutputResult
impl Debug for GetConsoleOutputResult
Source§impl Default for GetConsoleOutputResult
impl Default for GetConsoleOutputResult
Source§fn default() -> GetConsoleOutputResult
fn default() -> GetConsoleOutputResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetConsoleOutputResult
impl PartialEq for GetConsoleOutputResult
impl StructuralPartialEq for GetConsoleOutputResult
Auto Trait Implementations§
impl Freeze for GetConsoleOutputResult
impl RefUnwindSafe for GetConsoleOutputResult
impl Send for GetConsoleOutputResult
impl Sync for GetConsoleOutputResult
impl Unpin for GetConsoleOutputResult
impl UnwindSafe for GetConsoleOutputResult
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