- StrippedMembersalias StrippedMembers = FilterToType!(Select!(strip_id, isNonRedisTypeOrID, isNonRedisType), T.tupleof) 
- Undocumented in source. 
- UnstrippedMembersalias UnstrippedMembers = FilterToType!(Select!(strip_id, isRedisTypeAndNotID, isRedisType), T.tupleof) 
- Undocumented in source. 
- strippedMemberIndicesalias strippedMemberIndices = indicesOf!(Select!(strip_id, isNonRedisTypeOrID, isNonRedisType), T.tupleof) 
- Undocumented in source. 
- unstrippedMemberIndicesalias unstrippedMemberIndices = indicesOf!(Select!(strip_id, isRedisTypeAndNotID, isRedisType), T.tupleof) 
- Undocumented in source. 
Represents the stripped type of a struct.
Strips all fields that cannot be directly stored as values in the Redis database. By default, any field named id or _id is also stripped. Set the strip_id parameter to false to keep those fields.