pub struct ListWorkspaceFilesParams {
pub path: Option<String>,
pub recursive: Option<bool>,
}Expand description
Query and header parameters for listWorkspaceFiles.
Fields§
§path: Option<String>Directory path to list
recursive: Option<bool>Walk sub-directories as well. Off by default, so a plain call lists one level — which is how
generated images, which land in images/, stayed invisible to the surfaces meant to show
them.
Trait Implementations§
Source§impl Clone for ListWorkspaceFilesParams
impl Clone for ListWorkspaceFilesParams
Source§fn clone(&self) -> ListWorkspaceFilesParams
fn clone(&self) -> ListWorkspaceFilesParams
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 ListWorkspaceFilesParams
impl Debug for ListWorkspaceFilesParams
Source§impl Default for ListWorkspaceFilesParams
impl Default for ListWorkspaceFilesParams
Source§fn default() -> ListWorkspaceFilesParams
fn default() -> ListWorkspaceFilesParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListWorkspaceFilesParams
impl<'de> Deserialize<'de> for ListWorkspaceFilesParams
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 ListWorkspaceFilesParams
impl PartialEq for ListWorkspaceFilesParams
Source§impl Serialize for ListWorkspaceFilesParams
impl Serialize for ListWorkspaceFilesParams
impl StructuralPartialEq for ListWorkspaceFilesParams
Auto Trait Implementations§
impl Freeze for ListWorkspaceFilesParams
impl RefUnwindSafe for ListWorkspaceFilesParams
impl Send for ListWorkspaceFilesParams
impl Sync for ListWorkspaceFilesParams
impl Unpin for ListWorkspaceFilesParams
impl UnsafeUnpin for ListWorkspaceFilesParams
impl UnwindSafe for ListWorkspaceFilesParams
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