#[repr(C)]pub struct svn_fs_fsfs_info_t {
pub fs_type: *const c_char,
pub shard_size: c_int,
pub min_unpacked_rev: svn_revnum_t,
pub log_addressing: svn_boolean_t,
}
Expand description
A structure that provides some information about a filesystem. Returned by svn_fs_info() for #SVN_FS_TYPE_FSFS filesystems.
@note Fields may be added to the end of this structure in future versions. Therefore, users shouldn’t allocate structures of this type, to preserve binary compatibility.
@since New in 1.9.
Fields§
§fs_type: *const c_char
Filesystem backend (#fs_type), i.e., the string #SVN_FS_TYPE_FSFS.
shard_size: c_int
Shard size, or 0 if the filesystem is not currently sharded.
min_unpacked_rev: svn_revnum_t
The smallest revision (as #svn_revnum_t) which is not in a pack file. @note Zero (0) if (but not iff) the format does not support packing.
log_addressing: svn_boolean_t
TRUE if logical addressing is enabled for this repository. FALSE if repository uses physical addressing.
Trait Implementations§
Source§impl Clone for svn_fs_fsfs_info_t
impl Clone for svn_fs_fsfs_info_t
Source§fn clone(&self) -> svn_fs_fsfs_info_t
fn clone(&self) -> svn_fs_fsfs_info_t
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 svn_fs_fsfs_info_t
impl Debug for svn_fs_fsfs_info_t
Source§impl Default for svn_fs_fsfs_info_t
impl Default for svn_fs_fsfs_info_t
impl Copy for svn_fs_fsfs_info_t
Auto Trait Implementations§
impl Freeze for svn_fs_fsfs_info_t
impl RefUnwindSafe for svn_fs_fsfs_info_t
impl !Send for svn_fs_fsfs_info_t
impl !Sync for svn_fs_fsfs_info_t
impl Unpin for svn_fs_fsfs_info_t
impl UnwindSafe for svn_fs_fsfs_info_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