pub struct EmbedStatusResp {
pub app: Option<String>,
pub embed_url: Option<String>,
pub entitled: Option<bool>,
pub origin: Option<String>,
pub phase: Option<String>,
pub reachable: Option<bool>,
}Fields§
§app: Option<String>App is the app this verdict is about.
embed_url: Option<String>EmbedURL is the in-app landing URL to frame. Empty when the caller is not entitled — a non-entitled caller never receives it.
entitled: Option<bool>Entitled is whether the caller’s org may frame this brand-owned app.
origin: Option<String>Origin is the app’s origin on this deployment’s own brand domain.
phase: Option<String>Phase is the verdict in one word: not-entitled, not-provisioned or ready.
reachable: Option<bool>Reachable is whether the app answered the liveness probe.
Implementations§
Source§impl EmbedStatusResp
impl EmbedStatusResp
pub fn new() -> EmbedStatusResp
Trait Implementations§
Source§impl Clone for EmbedStatusResp
impl Clone for EmbedStatusResp
Source§fn clone(&self) -> EmbedStatusResp
fn clone(&self) -> EmbedStatusResp
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 EmbedStatusResp
impl Debug for EmbedStatusResp
Source§impl Default for EmbedStatusResp
impl Default for EmbedStatusResp
Source§fn default() -> EmbedStatusResp
fn default() -> EmbedStatusResp
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmbedStatusResp
impl<'de> Deserialize<'de> for EmbedStatusResp
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 EmbedStatusResp
impl PartialEq for EmbedStatusResp
Source§impl Serialize for EmbedStatusResp
impl Serialize for EmbedStatusResp
impl StructuralPartialEq for EmbedStatusResp
Auto Trait Implementations§
impl Freeze for EmbedStatusResp
impl RefUnwindSafe for EmbedStatusResp
impl Send for EmbedStatusResp
impl Sync for EmbedStatusResp
impl Unpin for EmbedStatusResp
impl UnsafeUnpin for EmbedStatusResp
impl UnwindSafe for EmbedStatusResp
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