pub struct Release {
pub id: String,
pub app_id: String,
pub environment: String,
pub artifact_digest: String,
pub runtime_config_digest: String,
pub upstream: String,
pub created_at: String,
pub approved_by: Option<String>,
}Fields§
§id: String§app_id: String§environment: String§artifact_digest: String§runtime_config_digest: String§upstream: StringImmutable provider route captured when the release is created.
The deploy data plane validates this URL against the configured provider origin before proxying, so a route switch never has to rediscover the “latest” deployment.
created_at: String§approved_by: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Release
impl<'de> Deserialize<'de> for Release
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 Release
impl StructuralPartialEq for Release
Auto Trait Implementations§
impl Freeze for Release
impl RefUnwindSafe for Release
impl Send for Release
impl Sync for Release
impl Unpin for Release
impl UnsafeUnpin for Release
impl UnwindSafe for Release
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