pub struct DeployLogs {
pub deployment_id: Option<String>,
pub logs: Option<String>,
pub source: Option<String>,
}Fields§
§deployment_id: Option<String>DeploymentID is the deployment these logs belong to.
logs: Option<String>Logs is the recorded status timeline followed by the streamed pod output, newline-separated.
source: Option<String>Source says which pod the log body carries — build, app, or none when neither pod was reachable — so a console can label the pane honestly.
Implementations§
Source§impl DeployLogs
impl DeployLogs
pub fn new() -> DeployLogs
Trait Implementations§
Source§impl Clone for DeployLogs
impl Clone for DeployLogs
Source§fn clone(&self) -> DeployLogs
fn clone(&self) -> DeployLogs
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 moreSource§impl Debug for DeployLogs
impl Debug for DeployLogs
Source§impl Default for DeployLogs
impl Default for DeployLogs
Source§fn default() -> DeployLogs
fn default() -> DeployLogs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeployLogs
impl<'de> Deserialize<'de> for DeployLogs
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
Source§impl PartialEq for DeployLogs
impl PartialEq for DeployLogs
Source§impl Serialize for DeployLogs
impl Serialize for DeployLogs
impl StructuralPartialEq for DeployLogs
Auto Trait Implementations§
impl Freeze for DeployLogs
impl RefUnwindSafe for DeployLogs
impl Send for DeployLogs
impl Sync for DeployLogs
impl Unpin for DeployLogs
impl UnsafeUnpin for DeployLogs
impl UnwindSafe for DeployLogs
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