pub struct StatusPing {
pub state: String,
}Expand description
GET /StatusPing — the UNAUTHENTICATED readiness anchor (works
mid-restart and with broken credentials; 02-02 fetches it header-less
via auth = false).
States observed live: RUNNING, STARTING. Commissioning-era states
are unenumerated — unknown states surface as-is and are treated as
not-ready by 02-05’s wait loops (02-RESEARCH Open Question 3).
Fields§
§state: StringRUNNING / STARTING / …, verbatim from the gateway.
Trait Implementations§
Source§impl Clone for StatusPing
impl Clone for StatusPing
Source§fn clone(&self) -> StatusPing
fn clone(&self) -> StatusPing
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 StatusPing
impl Debug for StatusPing
Source§impl<'de> Deserialize<'de> for StatusPing
impl<'de> Deserialize<'de> for StatusPing
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
impl Eq for StatusPing
Source§impl PartialEq for StatusPing
impl PartialEq for StatusPing
Source§impl Serialize for StatusPing
impl Serialize for StatusPing
impl StructuralPartialEq for StatusPing
Auto Trait Implementations§
impl Freeze for StatusPing
impl RefUnwindSafe for StatusPing
impl Send for StatusPing
impl Sync for StatusPing
impl Unpin for StatusPing
impl UnsafeUnpin for StatusPing
impl UnwindSafe for StatusPing
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.