pub struct Function {
pub id: Option<String>,
pub name: Option<String>,
pub type: Option<String>,
pub properties: Option<FunctionProperties>,
}Expand description
An individual Azure Function within a Function App.
Azure API: functions.v1.Function
Reference: https://learn.microsoft.com/en-us/rest/api/appservice//Function
Fields§
§id: Option<String>Fully qualified resource ID
name: Option<String>The name of the function
type: Option<String>The type of the resource
properties: Option<FunctionProperties>Function properties
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Function
impl<'de> Deserialize<'de> for Function
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 Function
impl RefUnwindSafe for Function
impl Send for Function
impl Sync for Function
impl Unpin for Function
impl UnsafeUnpin for Function
impl UnwindSafe for Function
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