pub struct RuntimeStatusResponse {
pub runtime_source_path: String,
pub config_path: String,
pub loaded_at_ms: u64,
pub source_mtime_ms: Option<u64>,
pub retry: ResolvedRetryConfig,
}Fields§
§runtime_source_path: String§config_path: String§loaded_at_ms: u64§source_mtime_ms: Option<u64>§retry: ResolvedRetryConfigTrait Implementations§
Source§impl Clone for RuntimeStatusResponse
impl Clone for RuntimeStatusResponse
Source§fn clone(&self) -> RuntimeStatusResponse
fn clone(&self) -> RuntimeStatusResponse
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 RuntimeStatusResponse
impl Debug for RuntimeStatusResponse
Source§impl<'de> Deserialize<'de> for RuntimeStatusResponse
impl<'de> Deserialize<'de> for RuntimeStatusResponse
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 RuntimeStatusResponse
impl RefUnwindSafe for RuntimeStatusResponse
impl Send for RuntimeStatusResponse
impl Sync for RuntimeStatusResponse
impl Unpin for RuntimeStatusResponse
impl UnsafeUnpin for RuntimeStatusResponse
impl UnwindSafe for RuntimeStatusResponse
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