[][src]Struct extremedb::runtime::Info

pub struct Info { /* fields omitted */ }

Runtime information.

This structure can be used by the applications to get the configuration of the runtime: eXtremeDB version, data types and features supported, policies, capabilities, etc.

The methods of this structure correspond to the fields of the mco_runtime_info_t structure declared in mco.h. Refer to the eXtremeDB documentation for information on individual parameters.

Examples

    let runtime = Runtime::start(vec![]);
    let caps = runtime.info();

    println!(
        "eXtremeDB version {}.{}.{}",
        caps.mco_version_major(),
        caps.mco_version_minor(),
        caps.mco_build_number()
    );

Implementations

impl Info[src]

pub fn mco_version_major(&self) -> u8[src]

pub fn mco_version_minor(&self) -> u8[src]

pub fn mco_build_number(&self) -> u16[src]

pub fn mco_size_t(&self) -> usize[src]

pub fn mco_offs_t(&self) -> usize[src]

pub fn uint4_supported(&self) -> bool[src]

pub fn float_supported(&self) -> bool[src]

pub fn mco_checklevel(&self) -> u8[src]

pub fn evaluation_version(&self) -> bool[src]

pub fn large_database_supported(&self) -> bool[src]

pub fn collation_supported(&self) -> bool[src]

pub fn heap31_supported(&self) -> bool[src]

pub fn bin_serialization_supported(&self) -> bool[src]

pub fn fixedrec_supported(&self) -> bool[src]

pub fn statistics_supported(&self) -> bool[src]

pub fn events_supported(&self) -> bool[src]

pub fn save_load_supported(&self) -> bool[src]

pub fn object_initialization_supported(&self) -> bool[src]

pub fn direct_index_field_access_supported(&self) -> bool[src]

pub fn multiprocess_access_supported(&self) -> bool[src]

pub fn object_repack_supported(&self) -> bool[src]

pub fn transaction_logging_supported(&self) -> bool[src]

pub fn cluster_supported(&self) -> bool[src]

pub fn high_availability_supported(&self) -> bool[src]

pub fn iot_supported(&self) -> bool[src]

pub fn ha_multicast_supported(&self) -> bool[src]

pub fn ha_incremental_replication_supported(&self) -> bool[src]

pub fn binary_schema_evolution_supported(&self) -> bool[src]

pub fn unicode_supported(&self) -> bool[src]

pub fn wchar_supported(&self) -> bool[src]

pub fn recovery_supported(&self) -> bool[src]

pub fn disk_supported(&self) -> bool[src]

pub fn direct_pointers_supported(&self) -> bool[src]

pub fn persistent_object_supported(&self) -> bool[src]

pub fn xml_import_export_supported(&self) -> bool[src]

pub fn user_defined_index_supported(&self) -> bool[src]

pub fn multifile_supported(&self) -> bool[src]

pub fn multifile_descriptor_supported(&self) -> bool[src]

pub fn two_phase_commit_supported(&self) -> bool[src]

pub fn rtree_supported(&self) -> bool[src]

pub fn tree_based_hash(&self) -> bool[src]

pub fn tmgr_mvcc_async_cleanup(&self) -> bool[src]

pub fn concurent_disk_btree(&self) -> bool[src]

pub fn open_cursor_goto_first(&self) -> bool[src]

pub fn smart_index_insert(&self) -> bool[src]

pub fn btree_leaf_lock(&self) -> bool[src]

pub fn null_statistics(&self) -> bool[src]

pub fn implicit_runtime_start(&self) -> bool[src]

pub fn bufferized_sync_iostream(&self) -> bool[src]

pub fn async_replication(&self) -> bool[src]

pub fn fast_transaction_list(&self) -> bool[src]

pub fn extendable_dirty_page_bitmap(&self) -> bool[src]

pub fn mursiw_policy(&self) -> u8[src]

pub fn sync_capabilities(&self) -> u8[src]

pub fn char_comparison_policy(&self) -> u8[src]

pub fn stream_buffer_size(&self) -> usize[src]

pub fn max_db_instances(&self) -> usize[src]

pub fn max_db_name_length(&self) -> usize[src]

pub fn max_extends(&self) -> isize[src]

pub fn tl_page_buffer_size(&self) -> usize[src]

pub fn ha_max_replicas(&self) -> usize[src]

pub fn ha_transmit_buffer_size(&self) -> usize[src]

pub fn ha_syncronization_buffer_size(&self) -> usize[src]

pub fn default_redo_log_limit(&self) -> usize[src]

pub fn mvcc_critical_sections(&self) -> usize[src]

pub fn mvcc_per_index_locks(&self) -> usize[src]

pub fn con_disk_page_cache_size(&self) -> usize[src]

pub fn small_con_cache_threshold(&self) -> usize[src]

pub fn extendable_dirty_page_bitmap_limit(&self) -> usize[src]

pub fn max_vista_sessions(&self) -> usize[src]

pub fn concurrent_write_transactions(&self) -> bool[src]

pub fn encryption_support(&self) -> bool[src]

pub fn backup_support(&self) -> bool[src]

pub fn mco_revision(&self) -> &'static str[src]

Auto Trait Implementations

impl RefUnwindSafe for Info

impl !Send for Info

impl !Sync for Info

impl Unpin for Info

impl UnwindSafe for Info

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.