pub struct BundledBinary {
pub binary_path: PathBuf,
pub platform: String,
pub version: String,
}Expand description
Resolved bundled Codex binary details.
Fields§
§binary_path: PathBufCanonicalized path to the bundled Codex binary (codex or codex.exe).
platform: StringPlatform slice resolved under the bundle root.
version: StringVersion slice resolved under the platform directory.
Trait Implementations§
Source§impl Clone for BundledBinary
impl Clone for BundledBinary
Source§fn clone(&self) -> BundledBinary
fn clone(&self) -> BundledBinary
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 BundledBinary
impl Debug for BundledBinary
Source§impl PartialEq for BundledBinary
impl PartialEq for BundledBinary
Source§fn eq(&self, other: &BundledBinary) -> bool
fn eq(&self, other: &BundledBinary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BundledBinary
impl StructuralPartialEq for BundledBinary
Auto Trait Implementations§
impl Freeze for BundledBinary
impl RefUnwindSafe for BundledBinary
impl Send for BundledBinary
impl Sync for BundledBinary
impl Unpin for BundledBinary
impl UnsafeUnpin for BundledBinary
impl UnwindSafe for BundledBinary
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.