Struct shuttle_metadata::Metadata
pub struct Metadata {
pub env: Environment,
pub project_name: String,
pub service_name: String,
pub storage_path: PathBuf,
}Fields§
§env: Environment§project_name: String§service_name: StringTypically your crate name
storage_path: PathBufPath to a folder that persists between deployments
Trait Implementations§
§impl Clone for DeploymentMetadata
impl Clone for DeploymentMetadata
§fn clone(&self) -> DeploymentMetadata
fn clone(&self) -> DeploymentMetadata
Returns a copy 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 more§impl Debug for DeploymentMetadata
impl Debug for DeploymentMetadata
§impl<'de> Deserialize<'de> for DeploymentMetadata
impl<'de> Deserialize<'de> for DeploymentMetadata
§fn deserialize<__D>(
__deserializer: __D
) -> Result<DeploymentMetadata, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<DeploymentMetadata, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl ResourceBuilder<DeploymentMetadata> for ShuttleMetadata
impl ResourceBuilder<DeploymentMetadata> for ShuttleMetadata
§type Config = ()
type Config = ()
The internal config being constructed by this builder. This will be used to find cached Self::Output.
§type Output = DeploymentMetadata
type Output = DeploymentMetadata
The output type used to build this resource later
§impl Serialize for DeploymentMetadata
impl Serialize for DeploymentMetadata
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for DeploymentMetadata
impl Send for DeploymentMetadata
impl Sync for DeploymentMetadata
impl Unpin for DeploymentMetadata
impl UnwindSafe for DeploymentMetadata
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