pub struct ComposeResponse {
pub compose_file: Value,
pub env_pubkey: String,
}Expand description
Response when retrieving a compose configuration.
Contains both the compose configuration and the public key needed for encrypting environment variables for updates.
Fields§
§compose_file: ValueThe compose file configuration
env_pubkey: StringPublic key for encrypting environment variables
Trait Implementations§
Source§impl Clone for ComposeResponse
impl Clone for ComposeResponse
Source§fn clone(&self) -> ComposeResponse
fn clone(&self) -> ComposeResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 ComposeResponse
impl Debug for ComposeResponse
Source§impl<'de> Deserialize<'de> for ComposeResponse
impl<'de> Deserialize<'de> for ComposeResponse
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 ComposeResponse
impl RefUnwindSafe for ComposeResponse
impl Send for ComposeResponse
impl Sync for ComposeResponse
impl Unpin for ComposeResponse
impl UnwindSafe for ComposeResponse
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