pub struct DownloadLogsResponse {
pub conductor_stdout: Vec<u8>,
pub conductor_stderr: Vec<u8>,
}
Expand description
The successful response type for a Request::DownloadLogs request.
Fields§
§conductor_stdout: Vec<u8>
The holochain conductor stdout log.
conductor_stderr: Vec<u8>
The holochain conductor stderr log.
Trait Implementations§
Source§impl Debug for DownloadLogsResponse
impl Debug for DownloadLogsResponse
Source§impl<'de> Deserialize<'de> for DownloadLogsResponse
impl<'de> Deserialize<'de> for DownloadLogsResponse
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 DownloadLogsResponse
impl RefUnwindSafe for DownloadLogsResponse
impl Send for DownloadLogsResponse
impl Sync for DownloadLogsResponse
impl Unpin for DownloadLogsResponse
impl UnwindSafe for DownloadLogsResponse
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