pub struct AuthRefreshResult {
pub target_file: String,
pub refreshed: bool,
pub synced: bool,
pub refreshed_at: Option<String>,
pub remote_sync: Option<bool>,
pub remote_ssh: Option<String>,
pub remote_name: Option<String>,
pub remote_refresh_attempted: Option<bool>,
pub remote_refresh_fallback: Option<bool>,
pub remote_refresh_error_code: Option<String>,
}Fields§
§target_file: String§refreshed: bool§synced: bool§refreshed_at: Option<String>§remote_sync: Option<bool>§remote_ssh: Option<String>§remote_name: Option<String>§remote_refresh_attempted: Option<bool>§remote_refresh_fallback: Option<bool>§remote_refresh_error_code: Option<String>Trait Implementations§
Source§impl Clone for AuthRefreshResult
impl Clone for AuthRefreshResult
Source§impl Debug for AuthRefreshResult
impl Debug for AuthRefreshResult
Auto Trait Implementations§
impl Freeze for AuthRefreshResult
impl RefUnwindSafe for AuthRefreshResult
impl Send for AuthRefreshResult
impl Sync for AuthRefreshResult
impl Unpin for AuthRefreshResult
impl UnsafeUnpin for AuthRefreshResult
impl UnwindSafe for AuthRefreshResult
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