/// A structure whose contents are public, so external users can construct
/// instances of it.
#[derive(Debug)]
pub struct ExposedStruct {

    pub data: Vec<u8>,


    /// Additional data that is required only when the `schema` feature
    /// is enabled.
    #[cfg(feature = "schema")]
    pub schema: String,
}
firstName   lastName
---------- ----------
John Doe
Peter Miller
Nick Anderson
Jane Doe
Peter Doe
<?php
$action = ( empty( $_POST['action'] ) ) ? 'standard' : $_POST['action'];

// The above is identical to the IF statement below.
if (empty($_POST['action'])) {
$action = 'standard';
} else {
$action = $_POST['action'];
}