pub struct OpenClawWorkspace {Show 13 fields
pub id: String,
pub name: String,
pub workspace_path: PathBuf,
pub model: Option<String>,
pub is_default: bool,
pub docs: Vec<WorkspaceDoc>,
pub lobster_workflows: Vec<LobsterWorkflow>,
pub has_agents_md: bool,
pub has_soul_md: bool,
pub has_tools_md: bool,
pub has_identity_md: bool,
pub has_memory_md: bool,
pub has_user_md: bool,
}Expand description
A discovered OpenClaw workspace with its docs.
Fields§
§id: String§name: String§workspace_path: PathBuf§model: Option<String>§is_default: bool§docs: Vec<WorkspaceDoc>§lobster_workflows: Vec<LobsterWorkflow>§has_agents_md: bool§has_soul_md: bool§has_tools_md: bool§has_identity_md: bool§has_memory_md: bool§has_user_md: boolTrait Implementations§
Source§impl Clone for OpenClawWorkspace
impl Clone for OpenClawWorkspace
Source§fn clone(&self) -> OpenClawWorkspace
fn clone(&self) -> OpenClawWorkspace
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 OpenClawWorkspace
impl Debug for OpenClawWorkspace
Source§impl<'de> Deserialize<'de> for OpenClawWorkspace
impl<'de> Deserialize<'de> for OpenClawWorkspace
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 OpenClawWorkspace
impl RefUnwindSafe for OpenClawWorkspace
impl Send for OpenClawWorkspace
impl Sync for OpenClawWorkspace
impl Unpin for OpenClawWorkspace
impl UnsafeUnpin for OpenClawWorkspace
impl UnwindSafe for OpenClawWorkspace
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