[][src]Trait jvm_serializable::java::io::Serializable

pub trait Serializable {
    type Item1: Serializable + Debug;
    type Item2: Serializable + Debug;
    type Item3: Serializable + Debug;
    type Item4: Serializable + Debug;
    type Item5: Serializable + Debug;
    pub fn java_class_name(&self) -> String;
pub fn serial_version_uid(&self) -> u64;
pub fn get_field<T: Any + Clone + 'static>(s: &Self, field: &str) -> T;
pub fn set_field<T: Any + Clone + 'static>(
        s: &mut Self,
        field: &str,
        val: T
    );
pub fn get_fields(&self) -> Vec<(String, String, i32)>;
pub fn get_item1(&self) -> Option<&Self::Item1>;
pub fn get_item2(&self) -> Option<&Self::Item2>;
pub fn get_item3(&self) -> Option<&Self::Item3>;
pub fn get_item4(&self) -> Option<&Self::Item4>;
pub fn get_item5(&self) -> Option<&Self::Item5>; }

Associated Types

Loading content...

Required methods

pub fn java_class_name(&self) -> String[src]

pub fn serial_version_uid(&self) -> u64[src]

pub fn get_field<T: Any + Clone + 'static>(s: &Self, field: &str) -> T[src]

pub fn set_field<T: Any + Clone + 'static>(s: &mut Self, field: &str, val: T)[src]

pub fn get_fields(&self) -> Vec<(String, String, i32)>[src]

pub fn get_item1(&self) -> Option<&Self::Item1>[src]

pub fn get_item2(&self) -> Option<&Self::Item2>[src]

pub fn get_item3(&self) -> Option<&Self::Item3>[src]

pub fn get_item4(&self) -> Option<&Self::Item4>[src]

pub fn get_item5(&self) -> Option<&Self::Item5>[src]

Loading content...

Implementors

Loading content...