Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.MailboxPermFlag) predicate.MailboxPermFlag
- func ID(id int) predicate.MailboxPermFlag
- func IDEQ(id int) predicate.MailboxPermFlag
- func IDGT(id int) predicate.MailboxPermFlag
- func IDGTE(id int) predicate.MailboxPermFlag
- func IDIn(ids ...int) predicate.MailboxPermFlag
- func IDLT(id int) predicate.MailboxPermFlag
- func IDLTE(id int) predicate.MailboxPermFlag
- func IDNEQ(id int) predicate.MailboxPermFlag
- func IDNotIn(ids ...int) predicate.MailboxPermFlag
- func Not(p predicate.MailboxPermFlag) predicate.MailboxPermFlag
- func Or(predicates ...predicate.MailboxPermFlag) predicate.MailboxPermFlag
- func ValidColumn(column string) bool
- func Value(v string) predicate.MailboxPermFlag
- func ValueContains(v string) predicate.MailboxPermFlag
- func ValueContainsFold(v string) predicate.MailboxPermFlag
- func ValueEQ(v string) predicate.MailboxPermFlag
- func ValueEqualFold(v string) predicate.MailboxPermFlag
- func ValueGT(v string) predicate.MailboxPermFlag
- func ValueGTE(v string) predicate.MailboxPermFlag
- func ValueHasPrefix(v string) predicate.MailboxPermFlag
- func ValueHasSuffix(v string) predicate.MailboxPermFlag
- func ValueIn(vs ...string) predicate.MailboxPermFlag
- func ValueLT(v string) predicate.MailboxPermFlag
- func ValueLTE(v string) predicate.MailboxPermFlag
- func ValueNEQ(v string) predicate.MailboxPermFlag
- func ValueNotIn(vs ...string) predicate.MailboxPermFlag
Constants ¶
const ( // Label holds the string label denoting the mailboxpermflag type in the database. Label = "mailbox_perm_flag" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldValue holds the string denoting the value field in the database. FieldValue = "value" // Table holds the table name of the mailboxpermflag in the database. Table = "mailbox_perm_flags" )
Variables ¶
var Columns = []string{ FieldID, FieldValue, }
Columns holds all SQL columns for mailboxpermflag fields.
var ForeignKeys = []string{
"mailbox_permanent_flags",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "mailbox_perm_flags" table and are not defined as standalone fields in the schema.
Functions ¶
func And ¶
func And(predicates ...predicate.MailboxPermFlag) predicate.MailboxPermFlag
And groups predicates with the AND operator between them.
func IDEQ ¶
func IDEQ(id int) predicate.MailboxPermFlag
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id int) predicate.MailboxPermFlag
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id int) predicate.MailboxPermFlag
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.MailboxPermFlag
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id int) predicate.MailboxPermFlag
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.MailboxPermFlag
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.MailboxPermFlag
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.MailboxPermFlag
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.MailboxPermFlag) predicate.MailboxPermFlag
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.MailboxPermFlag) predicate.MailboxPermFlag
Or groups predicates with the OR operator between them.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
func Value ¶
func Value(v string) predicate.MailboxPermFlag
Value applies equality check predicate on the "Value" field. It's identical to ValueEQ.
func ValueContains ¶
func ValueContains(v string) predicate.MailboxPermFlag
ValueContains applies the Contains predicate on the "Value" field.
func ValueContainsFold ¶
func ValueContainsFold(v string) predicate.MailboxPermFlag
ValueContainsFold applies the ContainsFold predicate on the "Value" field.
func ValueEQ ¶
func ValueEQ(v string) predicate.MailboxPermFlag
ValueEQ applies the EQ predicate on the "Value" field.
func ValueEqualFold ¶
func ValueEqualFold(v string) predicate.MailboxPermFlag
ValueEqualFold applies the EqualFold predicate on the "Value" field.
func ValueGT ¶
func ValueGT(v string) predicate.MailboxPermFlag
ValueGT applies the GT predicate on the "Value" field.
func ValueGTE ¶
func ValueGTE(v string) predicate.MailboxPermFlag
ValueGTE applies the GTE predicate on the "Value" field.
func ValueHasPrefix ¶
func ValueHasPrefix(v string) predicate.MailboxPermFlag
ValueHasPrefix applies the HasPrefix predicate on the "Value" field.
func ValueHasSuffix ¶
func ValueHasSuffix(v string) predicate.MailboxPermFlag
ValueHasSuffix applies the HasSuffix predicate on the "Value" field.
func ValueIn ¶
func ValueIn(vs ...string) predicate.MailboxPermFlag
ValueIn applies the In predicate on the "Value" field.
func ValueLT ¶
func ValueLT(v string) predicate.MailboxPermFlag
ValueLT applies the LT predicate on the "Value" field.
func ValueLTE ¶
func ValueLTE(v string) predicate.MailboxPermFlag
ValueLTE applies the LTE predicate on the "Value" field.
func ValueNEQ ¶
func ValueNEQ(v string) predicate.MailboxPermFlag
ValueNEQ applies the NEQ predicate on the "Value" field.
func ValueNotIn ¶
func ValueNotIn(vs ...string) predicate.MailboxPermFlag
ValueNotIn applies the NotIn predicate on the "Value" field.
Types ¶
This section is empty.