pub struct ProjectFile {
pub resource: Resource,
pub etag: Option<String>,
pub properties: Option<ProjectFileProperties>,
pub system_data: Option<SystemData>,
}
Expand description
A file resource
Fields§
§resource: Resource
§etag: Option<String>
HTTP strong entity tag value. This is ignored if submitted.
properties: Option<ProjectFileProperties>
Base class for file properties.
system_data: Option<SystemData>
Implementations§
Source§impl ProjectFile
impl ProjectFile
Trait Implementations§
Source§impl Clone for ProjectFile
impl Clone for ProjectFile
Source§fn clone(&self) -> ProjectFile
fn clone(&self) -> ProjectFile
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 ProjectFile
impl Debug for ProjectFile
Source§impl Default for ProjectFile
impl Default for ProjectFile
Source§fn default() -> ProjectFile
fn default() -> ProjectFile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectFile
impl<'de> Deserialize<'de> for ProjectFile
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 ProjectFile
impl PartialEq for ProjectFile
Source§impl Serialize for ProjectFile
impl Serialize for ProjectFile
impl StructuralPartialEq for ProjectFile
Auto Trait Implementations§
impl Freeze for ProjectFile
impl RefUnwindSafe for ProjectFile
impl Send for ProjectFile
impl Sync for ProjectFile
impl Unpin for ProjectFile
impl UnwindSafe for ProjectFile
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