pub struct MaxFilePathLengthParameters {
pub max_file_path_length: i32,
}
Fields§
§max_file_path_length: i32
The maximum amount of characters allowed in file paths
Implementations§
Source§impl MaxFilePathLengthParameters
impl MaxFilePathLengthParameters
pub fn new(max_file_path_length: i32) -> MaxFilePathLengthParameters
Trait Implementations§
Source§impl Clone for MaxFilePathLengthParameters
impl Clone for MaxFilePathLengthParameters
Source§fn clone(&self) -> MaxFilePathLengthParameters
fn clone(&self) -> MaxFilePathLengthParameters
Returns a duplicate of the value. Read more
1.0.0 · 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 MaxFilePathLengthParameters
impl Debug for MaxFilePathLengthParameters
Source§impl Default for MaxFilePathLengthParameters
impl Default for MaxFilePathLengthParameters
Source§fn default() -> MaxFilePathLengthParameters
fn default() -> MaxFilePathLengthParameters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MaxFilePathLengthParameters
impl<'de> Deserialize<'de> for MaxFilePathLengthParameters
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 StructuralPartialEq for MaxFilePathLengthParameters
Auto Trait Implementations§
impl Freeze for MaxFilePathLengthParameters
impl RefUnwindSafe for MaxFilePathLengthParameters
impl Send for MaxFilePathLengthParameters
impl Sync for MaxFilePathLengthParameters
impl Unpin for MaxFilePathLengthParameters
impl UnwindSafe for MaxFilePathLengthParameters
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