Skip to main content

Validated

Trait Validated 

Source
pub trait Validated {
    // Required methods
    fn value(&self) -> &str;
    fn label(&self) -> &str;
}
Expand description

PART.1 定義共同特徵 (trait) 共同行為或功能: 回傳對應字串 (value) 與 標籤 (label)

Required Methods§

Source

fn value(&self) -> &str

Source

fn label(&self) -> &str

Implementors§