pub struct UnlockTarget {
pub path: String,
pub token: Option<String>,
}Expand description
An unlock target for crate::RaSvnSession::unlock_many.
Fields§
§path: StringRepository path to unlock.
token: Option<String>Optional lock token.
Implementations§
Trait Implementations§
Source§impl Clone for UnlockTarget
impl Clone for UnlockTarget
Source§fn clone(&self) -> UnlockTarget
fn clone(&self) -> UnlockTarget
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 UnlockTarget
impl Debug for UnlockTarget
Source§impl<'de> Deserialize<'de> for UnlockTarget
impl<'de> Deserialize<'de> for UnlockTarget
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 UnlockTarget
impl PartialEq for UnlockTarget
Source§impl Serialize for UnlockTarget
impl Serialize for UnlockTarget
impl Eq for UnlockTarget
impl StructuralPartialEq for UnlockTarget
Auto Trait Implementations§
impl Freeze for UnlockTarget
impl RefUnwindSafe for UnlockTarget
impl Send for UnlockTarget
impl Sync for UnlockTarget
impl Unpin for UnlockTarget
impl UnwindSafe for UnlockTarget
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