pub struct TaskLogsResult {
pub name: String,
pub stdout: String,
pub stderr: String,
}Expand description
Result of task_logs.
Fields§
§name: StringTask name.
stdout: StringRecent stdout output.
stderr: StringRecent stderr output.
Trait Implementations§
Source§impl Debug for TaskLogsResult
impl Debug for TaskLogsResult
Source§impl JsonSchema for TaskLogsResult
impl JsonSchema for TaskLogsResult
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for TaskLogsResult
impl RefUnwindSafe for TaskLogsResult
impl Send for TaskLogsResult
impl Sync for TaskLogsResult
impl Unpin for TaskLogsResult
impl UnwindSafe for TaskLogsResult
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