#[repr(C)]pub struct svn_opt_revision_value_t {
pub number: __BindgenUnionField<svn_revnum_t>,
pub date: __BindgenUnionField<apr_time_t>,
pub bindgen_union_field: u64,
}
Expand description
A revision value, which can be specified as a number or a date.
@note This union was formerly an anonymous inline type in @c svn_opt_revision_t, and was converted to a named type just to make things easier for SWIG.
@since New in 1.3.
Fields§
§number: __BindgenUnionField<svn_revnum_t>
The revision number
date: __BindgenUnionField<apr_time_t>
the date of the revision
bindgen_union_field: u64
Trait Implementations§
Auto Trait Implementations§
impl Freeze for svn_opt_revision_value_t
impl RefUnwindSafe for svn_opt_revision_value_t
impl Send for svn_opt_revision_value_t
impl Sync for svn_opt_revision_value_t
impl Unpin for svn_opt_revision_value_t
impl UnwindSafe for svn_opt_revision_value_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