#[repr(C)]pub struct svn_wc_external_item_t {
pub target_dir: *const c_char,
pub url: *const c_char,
pub revision: svn_opt_revision_t,
}
Expand description
One external item. Similar to svn_wc_external_item2_t, except @a revision is interpreted as both the operational revision and the peg revision.
@deprecated Provided for backward compatibility with the 1.4 API.
Fields§
§target_dir: *const c_char
Same as #svn_wc_external_item2_t.target_dir
url: *const c_char
Same as #svn_wc_external_item2_t.url
revision: svn_opt_revision_t
Same as #svn_wc_external_item2_t.revision
Trait Implementations§
Auto Trait Implementations§
impl Freeze for svn_wc_external_item_t
impl RefUnwindSafe for svn_wc_external_item_t
impl !Send for svn_wc_external_item_t
impl !Sync for svn_wc_external_item_t
impl Unpin for svn_wc_external_item_t
impl UnwindSafe for svn_wc_external_item_t
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