#[repr(C)]pub struct svn_txdelta_op_t {
pub action_code: svn_delta_action,
pub offset: apr_size_t,
pub length: apr_size_t,
}
Expand description
A single text delta instruction.
Fields§
§action_code: svn_delta_action
Action code of delta instruction
offset: apr_size_t
Offset of delta, see #svn_delta_action for more details.
length: apr_size_t
Number of bytes of delta, see #svn_delta_action for more details.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for svn_txdelta_op_t
impl RefUnwindSafe for svn_txdelta_op_t
impl Send for svn_txdelta_op_t
impl Sync for svn_txdelta_op_t
impl Unpin for svn_txdelta_op_t
impl UnwindSafe for svn_txdelta_op_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