/// Extract the rank value from the card
///
/// # Arguments
/// * `card` - The card to extract the rank from
///
/// # Returns
/// The rank value of the card.
///
/// # Example
/// ```
/// use standard_card::card::get_rank;
///
/// let rank = get_rank(541511);
/// assert_eq!(3, rank);
/// ```