pub struct PathUpdate {
pub path: Option<String>,
}Expand description
PathUpdate : All attributes for updating a path.
Fields§
§path: Option<String>The URL path pattern, beginning with /. Maximum 2048 characters.
Implementations§
Source§impl PathUpdate
impl PathUpdate
Sourcepub fn new() -> PathUpdate
pub fn new() -> PathUpdate
All attributes for updating a path.
Trait Implementations§
Source§impl Clone for PathUpdate
impl Clone for PathUpdate
Source§fn clone(&self) -> PathUpdate
fn clone(&self) -> PathUpdate
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 PathUpdate
impl Debug for PathUpdate
Source§impl Default for PathUpdate
impl Default for PathUpdate
Source§fn default() -> PathUpdate
fn default() -> PathUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PathUpdate
impl<'de> Deserialize<'de> for PathUpdate
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 PartialEq for PathUpdate
impl PartialEq for PathUpdate
Source§impl Serialize for PathUpdate
impl Serialize for PathUpdate
impl StructuralPartialEq for PathUpdate
Auto Trait Implementations§
impl Freeze for PathUpdate
impl RefUnwindSafe for PathUpdate
impl Send for PathUpdate
impl Sync for PathUpdate
impl Unpin for PathUpdate
impl UnsafeUnpin for PathUpdate
impl UnwindSafe for PathUpdate
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