pub struct AppState {
pub schema_version: u32,
pub selected_repo_path: Option<PathBuf>,
pub preferred_git_binary: Option<String>,
pub default_remote_name: String,
pub graph_query: GraphQuery,
pub selected_commit_hashes: Vec<String>,
pub actions: ActionCatalog,
}Fields§
§schema_version: u32§selected_repo_path: Option<PathBuf>§preferred_git_binary: Option<String>§default_remote_name: String§graph_query: GraphQuery§selected_commit_hashes: Vec<String>§actions: ActionCatalogTrait Implementations§
Source§impl<'de> Deserialize<'de> for AppState
impl<'de> Deserialize<'de> for AppState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for AppState
impl StructuralPartialEq for AppState
Auto Trait Implementations§
impl Freeze for AppState
impl RefUnwindSafe for AppState
impl Send for AppState
impl Sync for AppState
impl Unpin for AppState
impl UnsafeUnpin for AppState
impl UnwindSafe for AppState
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