pub struct SettingsFileLoadReply {
pub files: Vec<SettingsFile>,
pub git_head_commit: String,
pub git_history: Vec<GitCommit>,
}Fields§
§files: Vec<SettingsFile>§git_head_commit: String§git_history: Vec<GitCommit>Implementations§
Source§impl SettingsFileLoadReply
impl SettingsFileLoadReply
pub fn new( files: Vec<SettingsFile>, git_head_commit: String, git_history: Vec<GitCommit>, ) -> SettingsFileLoadReply
Trait Implementations§
Source§impl Clone for SettingsFileLoadReply
impl Clone for SettingsFileLoadReply
Source§fn clone(&self) -> SettingsFileLoadReply
fn clone(&self) -> SettingsFileLoadReply
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SettingsFileLoadReply
impl Debug for SettingsFileLoadReply
Source§impl<'de> Deserialize<'de> for SettingsFileLoadReply
impl<'de> Deserialize<'de> for SettingsFileLoadReply
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
Source§impl Hash for SettingsFileLoadReply
impl Hash for SettingsFileLoadReply
Source§impl Ord for SettingsFileLoadReply
impl Ord for SettingsFileLoadReply
Source§fn cmp(&self, other: &SettingsFileLoadReply) -> Ordering
fn cmp(&self, other: &SettingsFileLoadReply) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SettingsFileLoadReply
impl PartialEq for SettingsFileLoadReply
Source§fn eq(&self, other: &SettingsFileLoadReply) -> bool
fn eq(&self, other: &SettingsFileLoadReply) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SettingsFileLoadReply
impl PartialOrd for SettingsFileLoadReply
Source§impl Serialize for SettingsFileLoadReply
impl Serialize for SettingsFileLoadReply
impl Eq for SettingsFileLoadReply
impl StructuralPartialEq for SettingsFileLoadReply
Auto Trait Implementations§
impl Freeze for SettingsFileLoadReply
impl RefUnwindSafe for SettingsFileLoadReply
impl Send for SettingsFileLoadReply
impl Sync for SettingsFileLoadReply
impl Unpin for SettingsFileLoadReply
impl UnsafeUnpin for SettingsFileLoadReply
impl UnwindSafe for SettingsFileLoadReply
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