A file or directory entry in a computer's filesystem.
@type file_type() :: :file | :directory | :symlink
@type t() :: %Miosa.Types.FileEntry{ modified_at: String.t() | nil, name: String.t(), path: String.t(), permissions: String.t() | nil, size: integer() | nil, type: file_type() }
@spec from_map(map()) :: t()