pub struct FunctionCodeLocation {
pub location: Option<String>,
pub repository_type: Option<String>,
}
Expand description
Details about a function's deployment package.
Fields§
§location: Option<String>
A presigned URL that you can use to download the deployment package.
repository_type: Option<String>
The service that's hosting the file.
Trait Implementations§
Source§impl Clone for FunctionCodeLocation
impl Clone for FunctionCodeLocation
Source§fn clone(&self) -> FunctionCodeLocation
fn clone(&self) -> FunctionCodeLocation
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 moreSource§impl Debug for FunctionCodeLocation
impl Debug for FunctionCodeLocation
Source§impl Default for FunctionCodeLocation
impl Default for FunctionCodeLocation
Source§fn default() -> FunctionCodeLocation
fn default() -> FunctionCodeLocation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FunctionCodeLocation
impl<'de> Deserialize<'de> for FunctionCodeLocation
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 PartialEq for FunctionCodeLocation
impl PartialEq for FunctionCodeLocation
impl StructuralPartialEq for FunctionCodeLocation
Auto Trait Implementations§
impl Freeze for FunctionCodeLocation
impl RefUnwindSafe for FunctionCodeLocation
impl Send for FunctionCodeLocation
impl Sync for FunctionCodeLocation
impl Unpin for FunctionCodeLocation
impl UnwindSafe for FunctionCodeLocation
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