pub struct InlineObject4 {
pub name: String,
pub folder_name: Option<String>,
pub last_touched_at: String,
pub creator: Box<User>,
pub last_touched_by: Option<Box<User>>,
pub thumbnail_url: Option<String>,
pub editor_type: EditorType,
pub role: Option<Role>,
pub link_access: Option<LinkAccess>,
pub url: Option<String>,
pub version: Option<String>,
}
Fields§
§name: String
The name of the file.
folder_name: Option<String>
The name of the project containing the file.
last_touched_at: String
The UTC ISO 8601 time at which the file content was last modified.
creator: Box<User>
The user who created the file.
last_touched_by: Option<Box<User>>
The user who last modified the file contents.
thumbnail_url: Option<String>
A URL to a thumbnail image of the file.
editor_type: EditorType
The type of editor associated with this file.
role: Option<Role>
The role of the user making the API request in relation to the file.
link_access: Option<LinkAccess>
Access policy for users who have the link to the file.
url: Option<String>
The URL of the file.
version: Option<String>
The version number of the file. This number is incremented when a file is modified and can be used to check if the file has changed between requests.
Implementations§
Source§impl InlineObject4
impl InlineObject4
pub fn new( name: String, last_touched_at: String, creator: User, editor_type: EditorType, ) -> InlineObject4
Trait Implementations§
Source§impl Clone for InlineObject4
impl Clone for InlineObject4
Source§fn clone(&self) -> InlineObject4
fn clone(&self) -> InlineObject4
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 InlineObject4
impl Debug for InlineObject4
Source§impl Default for InlineObject4
impl Default for InlineObject4
Source§fn default() -> InlineObject4
fn default() -> InlineObject4
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InlineObject4
impl<'de> Deserialize<'de> for InlineObject4
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 InlineObject4
impl PartialEq for InlineObject4
Source§impl Serialize for InlineObject4
impl Serialize for InlineObject4
impl StructuralPartialEq for InlineObject4
Auto Trait Implementations§
impl Freeze for InlineObject4
impl RefUnwindSafe for InlineObject4
impl Send for InlineObject4
impl Sync for InlineObject4
impl Unpin for InlineObject4
impl UnwindSafe for InlineObject4
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