pub struct Entry {
uri: String,
path: String,
file_name: String,
name: String,
pixbuf: &'static str,
project: bool,
stored: bool,
}
Fields§
§uri: String
§path: String
§file_name: String
§name: String
§pixbuf: &'static str
§project: bool
§stored: bool
Implementations§
Source§impl Entry
impl Entry
fn new_project(name: &str, uri: &str) -> Entry
fn new_current_project(uri: &str) -> Entry
fn new_from_path(uri: &str) -> Entry
fn to_values(&self) -> Box<[&dyn ToValue]>
fn to_entry_settings(&self) -> ProjectEntrySettings
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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