pub struct StoredFunction {
pub name: String,
pub etag: String,
pub status: String,
pub stage: String,
pub function_arn: String,
pub created_time: DateTime<Utc>,
pub last_modified_time: DateTime<Utc>,
pub config: FunctionConfig,
pub function_code: String,
}Fields§
§name: String§etag: String§status: String§stage: String“DEVELOPMENT” or “LIVE”
function_arn: String§created_time: DateTime<Utc>§last_modified_time: DateTime<Utc>§config: FunctionConfig§function_code: StringFunction source code (base64-encoded as the API receives it).
Trait Implementations§
Source§impl Clone for StoredFunction
impl Clone for StoredFunction
Source§fn clone(&self) -> StoredFunction
fn clone(&self) -> StoredFunction
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 StoredFunction
impl Debug for StoredFunction
Source§impl<'de> Deserialize<'de> for StoredFunction
impl<'de> Deserialize<'de> for StoredFunction
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 StoredFunction
impl RefUnwindSafe for StoredFunction
impl Send for StoredFunction
impl Sync for StoredFunction
impl Unpin for StoredFunction
impl UnsafeUnpin for StoredFunction
impl UnwindSafe for StoredFunction
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