pub struct ActionListDirectoryResult {
pub is_directory: Option<bool>,
pub file_size: Option<u64>,
pub name: Option<String>,
}Expand description
antigravity.localharness.ActionListDirectory.Result
Fields§
§is_directory: Option<bool>§file_size: Option<u64>§name: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ActionListDirectoryResult
impl Clone for ActionListDirectoryResult
Source§fn clone(&self) -> ActionListDirectoryResult
fn clone(&self) -> ActionListDirectoryResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActionListDirectoryResult
impl Debug for ActionListDirectoryResult
Source§impl Default for ActionListDirectoryResult
impl Default for ActionListDirectoryResult
Source§fn default() -> ActionListDirectoryResult
fn default() -> ActionListDirectoryResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionListDirectoryResult
impl<'de> Deserialize<'de> for ActionListDirectoryResult
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
impl StructuralPartialEq for ActionListDirectoryResult
Auto Trait Implementations§
impl Freeze for ActionListDirectoryResult
impl RefUnwindSafe for ActionListDirectoryResult
impl Send for ActionListDirectoryResult
impl Sync for ActionListDirectoryResult
impl Unpin for ActionListDirectoryResult
impl UnsafeUnpin for ActionListDirectoryResult
impl UnwindSafe for ActionListDirectoryResult
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