pub struct ResolvedOptions {Show 14 fields
pub repo: String,
pub remote_path: String,
pub local_target: PathBuf,
pub git_ref: Option<String>,
pub token: Option<String>,
pub api_base: String,
pub proxy_base: String,
pub prefix_mode: PrefixProxyMode,
pub concurrency: usize,
pub language: Language,
pub overwrite: bool,
pub json: bool,
pub debug: bool,
pub no_color: bool,
}Fields§
§repo: String§remote_path: String§local_target: PathBuf§git_ref: Option<String>§token: Option<String>§api_base: String§proxy_base: String§prefix_mode: PrefixProxyMode§concurrency: usize§language: Language§overwrite: bool§json: bool§debug: bool§no_color: boolTrait Implementations§
Source§impl Clone for ResolvedOptions
impl Clone for ResolvedOptions
Source§fn clone(&self) -> ResolvedOptions
fn clone(&self) -> ResolvedOptions
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 ResolvedOptions
impl Debug for ResolvedOptions
Source§impl PartialEq for ResolvedOptions
impl PartialEq for ResolvedOptions
impl Eq for ResolvedOptions
impl StructuralPartialEq for ResolvedOptions
Auto Trait Implementations§
impl Freeze for ResolvedOptions
impl RefUnwindSafe for ResolvedOptions
impl Send for ResolvedOptions
impl Sync for ResolvedOptions
impl Unpin for ResolvedOptions
impl UnsafeUnpin for ResolvedOptions
impl UnwindSafe for ResolvedOptions
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