pub struct FunctionsComponentsThatArePartOfThisDeploymentItem {
pub name: Option<String>,
pub namespace: Option<String>,
pub source_commit_hash: Option<String>,
}Expand description
FunctionsComponentsThatArePartOfThisDeploymentItem
JSON schema
{
"type": "object",
"properties": {
"name": {
"title": "The name of this functions component",
"examples": [
"my-functions-component"
],
"type": "string"
},
"namespace": {
"description": "The namespace where the functions are deployed.",
"examples": [
"ap-b2a93513-8d9b-4223-9d61-5e7272c81c32"
],
"type": "string"
},
"source_commit_hash": {
"description": "The commit hash of the repository that was used to build this functions component.",
"examples": [
"54d4a727f457231062439895000d45437c7bb405"
],
"type": "string"
}
}
}Fields§
§name: Option<String>§namespace: Option<String>The namespace where the functions are deployed.
source_commit_hash: Option<String>The commit hash of the repository that was used to build this functions component.
Trait Implementations§
Source§impl Clone for FunctionsComponentsThatArePartOfThisDeploymentItem
impl Clone for FunctionsComponentsThatArePartOfThisDeploymentItem
Source§fn clone(&self) -> FunctionsComponentsThatArePartOfThisDeploymentItem
fn clone(&self) -> FunctionsComponentsThatArePartOfThisDeploymentItem
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<'de> Deserialize<'de> for FunctionsComponentsThatArePartOfThisDeploymentItem
impl<'de> Deserialize<'de> for FunctionsComponentsThatArePartOfThisDeploymentItem
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 From<&FunctionsComponentsThatArePartOfThisDeploymentItem> for FunctionsComponentsThatArePartOfThisDeploymentItem
impl From<&FunctionsComponentsThatArePartOfThisDeploymentItem> for FunctionsComponentsThatArePartOfThisDeploymentItem
Source§fn from(value: &FunctionsComponentsThatArePartOfThisDeploymentItem) -> Self
fn from(value: &FunctionsComponentsThatArePartOfThisDeploymentItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FunctionsComponentsThatArePartOfThisDeploymentItem
impl RefUnwindSafe for FunctionsComponentsThatArePartOfThisDeploymentItem
impl Send for FunctionsComponentsThatArePartOfThisDeploymentItem
impl Sync for FunctionsComponentsThatArePartOfThisDeploymentItem
impl Unpin for FunctionsComponentsThatArePartOfThisDeploymentItem
impl UnsafeUnpin for FunctionsComponentsThatArePartOfThisDeploymentItem
impl UnwindSafe for FunctionsComponentsThatArePartOfThisDeploymentItem
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