pub struct GuestConfig {
pub join_code: String,
pub uses_opfs: bool,
}Expand description
Configuration for guest mode sync.
Guests need special path handling to isolate their storage from the host.
Fields§
§join_code: StringThe join code for the share session.
uses_opfs: boolIf true, prefix paths with guest/{join_code}/ for OPFS storage. If false (in-memory storage), paths are used as-is.
Trait Implementations§
Source§impl Clone for GuestConfig
impl Clone for GuestConfig
Source§fn clone(&self) -> GuestConfig
fn clone(&self) -> GuestConfig
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 GuestConfig
impl Debug for GuestConfig
Source§impl Default for GuestConfig
impl Default for GuestConfig
Source§fn default() -> GuestConfig
fn default() -> GuestConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GuestConfig
impl<'de> Deserialize<'de> for GuestConfig
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 GuestConfig
impl RefUnwindSafe for GuestConfig
impl Send for GuestConfig
impl Sync for GuestConfig
impl Unpin for GuestConfig
impl UnsafeUnpin for GuestConfig
impl UnwindSafe for GuestConfig
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