pub struct AuthRemotePullResult {
pub ssh: String,
pub name: String,
pub access_only: bool,
pub write_active: bool,
pub auth_file: String,
pub has_oauth_access_token: bool,
pub has_oauth_refresh_token: bool,
pub remote_refresh_attempted: Option<bool>,
pub remote_refresh_fallback: Option<bool>,
pub remote_refresh_error_code: Option<String>,
}Fields§
§ssh: String§name: String§access_only: bool§write_active: bool§auth_file: String§has_oauth_access_token: bool§has_oauth_refresh_token: bool§remote_refresh_attempted: Option<bool>§remote_refresh_fallback: Option<bool>§remote_refresh_error_code: Option<String>Trait Implementations§
Source§impl Clone for AuthRemotePullResult
impl Clone for AuthRemotePullResult
Source§impl Debug for AuthRemotePullResult
impl Debug for AuthRemotePullResult
Auto Trait Implementations§
impl Freeze for AuthRemotePullResult
impl RefUnwindSafe for AuthRemotePullResult
impl Send for AuthRemotePullResult
impl Sync for AuthRemotePullResult
impl Unpin for AuthRemotePullResult
impl UnsafeUnpin for AuthRemotePullResult
impl UnwindSafe for AuthRemotePullResult
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