pub struct BundleInfo {
pub exported_at: Option<String>,
pub version: Option<String>,
pub url: Option<String>,
pub user_agent: Option<String>,
pub worker_state: Option<String>,
pub mode: Option<String>,
}Expand description
Environment metadata embedded at the top of a formal_ai_bundle document.
Mirrors the info object passed by the browser to
FormalAiMemory.exportBundle({ info }): a small free-form record that lets
the maintainer reconstruct the runtime context in which the export was
produced (app version, URL, user agent, worker state, demo/manual mode).
Fields§
§exported_at: Option<String>§version: Option<String>§url: Option<String>§user_agent: Option<String>§worker_state: Option<String>§mode: Option<String>Trait Implementations§
Source§impl Clone for BundleInfo
impl Clone for BundleInfo
Source§fn clone(&self) -> BundleInfo
fn clone(&self) -> BundleInfo
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 BundleInfo
impl Debug for BundleInfo
Source§impl Default for BundleInfo
impl Default for BundleInfo
Source§fn default() -> BundleInfo
fn default() -> BundleInfo
Returns the “default value” for a type. Read more
impl Eq for BundleInfo
Source§impl PartialEq for BundleInfo
impl PartialEq for BundleInfo
impl StructuralPartialEq for BundleInfo
Auto Trait Implementations§
impl Freeze for BundleInfo
impl RefUnwindSafe for BundleInfo
impl Send for BundleInfo
impl Sync for BundleInfo
impl Unpin for BundleInfo
impl UnsafeUnpin for BundleInfo
impl UnwindSafe for BundleInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.