pub struct FunctionApp {
pub id: Option<String>,
pub name: Option<String>,
pub type: Option<String>,
pub location: Option<String>,
pub tags: HashMap<String, String>,
pub kind: Option<String>,
pub properties: Option<FunctionAppProperties>,
}Expand description
A Function App resource (Azure Web Sites Site).
Azure API: functions.v1.FunctionApp
Reference: https://learn.microsoft.com/en-us/rest/api/appservice//FunctionApp
Fields§
§id: Option<String>Fully qualified resource ID
name: Option<String>The name of the resource
type: Option<String>The type of the resource
location: Option<String>Resource location
Resource tags
kind: Option<String>Kind of resource
properties: Option<FunctionAppProperties>Function App properties
Trait Implementations§
Source§impl Clone for FunctionApp
impl Clone for FunctionApp
Source§fn clone(&self) -> FunctionApp
fn clone(&self) -> FunctionApp
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 FunctionApp
impl Debug for FunctionApp
Source§impl Default for FunctionApp
impl Default for FunctionApp
Source§fn default() -> FunctionApp
fn default() -> FunctionApp
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FunctionApp
impl<'de> Deserialize<'de> for FunctionApp
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 FunctionApp
impl RefUnwindSafe for FunctionApp
impl Send for FunctionApp
impl Sync for FunctionApp
impl Unpin for FunctionApp
impl UnsafeUnpin for FunctionApp
impl UnwindSafe for FunctionApp
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